22<project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" 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
5- <groupId >com.hackerrank</groupId >
5+ <groupId >com.hackerrank.applications </groupId >
66 <artifactId >junit-ordered-test-runner</artifactId >
77 <version >1.0</version >
88 <packaging >jar</packaging >
99
1010 <name >${project.groupId} :${project.artifactId} </name >
11- <description >An application to provide support for executing tests in the specific order
12- and generate the customized XML report.
13- </description >
11+ <description >An application to provide support for executing tests in the specific order and generate the customized XML report.</description >
12+ <url >http://github.com/interviewstreet/junit-ordered-test-runner/tree/master</url >
1413
1514 <properties >
1615 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
3938 <developerConnection >scm:git:ssh://github.com:interviewstreet/junit-ordered-test-runner.git</developerConnection >
4039 <url >http://github.com/interviewstreet/junit-ordered-test-runner/tree/master</url >
4140 </scm >
41+
42+ <distributionManagement >
43+ <snapshotRepository >
44+ <id >ossrh</id >
45+ <url >https://oss.sonatype.org/content/repositories/snapshots</url >
46+ </snapshotRepository >
47+
48+ <repository >
49+ <id >ossrh</id >
50+ <url >https://oss.sonatype.org/service/local/staging/deploy/maven2/</url >
51+ </repository >
52+ </distributionManagement >
4253
4354 <dependencies >
4455 <dependency >
6980 <type >jar</type >
7081 </dependency >
7182 </dependencies >
72- </project >
83+
84+ <build >
85+ <plugins >
86+ <plugin >
87+ <groupId >org.apache.maven.plugins</groupId >
88+ <artifactId >maven-source-plugin</artifactId >
89+ <version >3.0.1</version >
90+
91+ <executions >
92+ <execution >
93+ <id >attach-sources</id >
94+ <goals >
95+ <goal >jar-no-fork</goal >
96+ </goals >
97+ </execution >
98+ </executions >
99+ </plugin >
100+
101+ <plugin >
102+ <groupId >org.apache.maven.plugins</groupId >
103+ <artifactId >maven-javadoc-plugin</artifactId >
104+ <version >3.0.1</version >
105+
106+ <executions >
107+ <execution >
108+ <id >attach-javadocs</id >
109+ <goals >
110+ <goal >jar</goal >
111+ </goals >
112+ </execution >
113+ </executions >
114+ </plugin >
115+
116+ <plugin >
117+ <groupId >org.apache.maven.plugins</groupId >
118+ <artifactId >maven-gpg-plugin</artifactId >
119+ <version >1.6</version >
120+
121+ <executions >
122+ <execution >
123+ <id >sign-artifacts</id >
124+ <phase >verify</phase >
125+ <goals >
126+ <goal >sign</goal >
127+ </goals >
128+ </execution >
129+ </executions >
130+ </plugin >
131+ </plugins >
132+ </build >
133+ </project >
0 commit comments