Skip to content

Commit d98984d

Browse files
Add required info in pom.xml to pass nexus validation (microsoft#132)
Signed-off-by: Jinbo Wang <jinbwan@microsoft.com>
1 parent 285040d commit d98984d

3 files changed

Lines changed: 48 additions & 3 deletions

File tree

com.microsoft.java.debug.core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<parent>
66
<groupId>com.microsoft.java</groupId>
7-
<artifactId>parent</artifactId>
7+
<artifactId>java-debug-parent</artifactId>
88
<version>0.4.0</version>
99
</parent>
1010
<artifactId>com.microsoft.java.debug.core</artifactId>

com.microsoft.java.debug.plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<parent>
66
<groupId>com.microsoft.java</groupId>
7-
<artifactId>parent</artifactId>
7+
<artifactId>java-debug-parent</artifactId>
88
<version>0.4.0</version>
99
</parent>
1010
<artifactId>com.microsoft.java.debug.plugin</artifactId>

pom.xml

Lines changed: 46 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,60 @@
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.microsoft.java</groupId>
5-
<artifactId>parent</artifactId>
5+
<artifactId>java-debug-parent</artifactId>
66
<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>
79
<version>0.4.0</version>
810
<packaging>pom</packaging>
911
<properties>
1012
<base.name>Java Debug Server for Visual Studio Code</base.name>
1113
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1214
<tycho-version>1.0.0</tycho-version>
1315
</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+
1459
<modules>
1560
<module>com.microsoft.java.debug.core</module>
1661
<module>com.microsoft.java.debug.plugin</module>

0 commit comments

Comments
 (0)