|
2 | 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | <groupId>com.microsoft.java</groupId> |
5 | | - <artifactId>parent</artifactId> |
| 5 | + <artifactId>java-debug-parent</artifactId> |
6 | 6 | <name>${base.name} :: Parent</name> |
| 7 | + <description>The Java Debug Server is an implementation of Visual Studio Code (VSCode) Debug Protocol. It can be used in Visual Studio Code to debug Java programs.</description> |
| 8 | + <url>https://github.com/Microsoft/java-debug</url> |
7 | 9 | <version>0.4.0</version> |
8 | 10 | <packaging>pom</packaging> |
9 | 11 | <properties> |
10 | 12 | <base.name>Java Debug Server for Visual Studio Code</base.name> |
11 | 13 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
12 | 14 | <tycho-version>1.0.0</tycho-version> |
13 | 15 | </properties> |
| 16 | + |
| 17 | + <licenses> |
| 18 | + <license> |
| 19 | + <name>Eclipse Public License 1.0</name> |
| 20 | + <url>https://github.com/Microsoft/java-debug/blob/master/LICENSE.txt</url> |
| 21 | + <distribution>repo</distribution> |
| 22 | + </license> |
| 23 | + </licenses> |
| 24 | + |
| 25 | + <developers> |
| 26 | + <developer> |
| 27 | + <id>akaroml</id> |
| 28 | + <name>Rome Li</name> |
| 29 | + <email>roml@microsoft.com</email> |
| 30 | + </developer> |
| 31 | + <developer> |
| 32 | + <id>testforstephen</id> |
| 33 | + <name>Jinbo Wang</name> |
| 34 | + <email>jinbwan@microsoft.com</email> |
| 35 | + </developer> |
| 36 | + <developer> |
| 37 | + <id>andxu</id> |
| 38 | + <name>Andy Xu</name> |
| 39 | + <email>andxu@microsoft.com</email> |
| 40 | + </developer> |
| 41 | + <developer> |
| 42 | + <id>yaohaizh</id> |
| 43 | + <name>Yaohai Zheng</name> |
| 44 | + <email>yaozheng@microsoft.com</email> |
| 45 | + </developer> |
| 46 | + </developers> |
| 47 | + |
| 48 | + <organization> |
| 49 | + <name>Microsoft</name> |
| 50 | + <url>https://www.microsoft.com</url> |
| 51 | + </organization> |
| 52 | + |
| 53 | + <scm> |
| 54 | + <connection>scm:git:git://github.com/Microsoft/java-debug.git</connection> |
| 55 | + <developerConnection>scm:git:ssh://github.com:Microsoft/java-debug.git</developerConnection> |
| 56 | + <url>https://github.com/Microsoft/java-debug/tree/master</url> |
| 57 | + </scm> |
| 58 | + |
14 | 59 | <modules> |
15 | 60 | <module>com.microsoft.java.debug.core</module> |
16 | 61 | <module>com.microsoft.java.debug.plugin</module> |
|
0 commit comments