1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <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" >
2
+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
3
4
<modelVersion >4.0.0</modelVersion >
4
5
6
+
5
7
<groupId >io.securecodebox</groupId >
6
8
<artifactId >defectdojo-client</artifactId >
7
9
<version >2.0.2-SNAPSHOT</version >
24
26
<url >https://www.securecodebox.io/</url >
25
27
</organization >
26
28
27
- <prerequisites >
28
- <maven >${maven.version} </maven >
29
- </prerequisites >
30
-
31
- <scm >
32
- <connection >scm:git:https://github.com/secureCodeBox/defectdojo-client-java.git</connection >
33
- <developerConnection >scm:git:https://github.com/secureCodeBox/defectdojo-client-java.git</developerConnection >
34
- <url >https://github.com/secureCodeBox/defectdojo-client-java.git</url >
35
- <tag >defectdojo-client-2.0.0</tag >
36
- </scm >
37
-
38
29
<developers >
39
30
<developer >
40
31
<id >jannik.hollenbach</id >
63
54
</developer >
64
55
</developers >
65
56
57
+ <prerequisites >
58
+ <maven >${maven.version} </maven >
59
+ </prerequisites >
60
+
61
+ <issueManagement >
62
+ <system >github</system >
63
+ <url >https://github.com/secureCodeBox/defectdojo-client-java/issues</url >
64
+ </issueManagement >
65
+
66
+ <scm >
67
+ <connection >scm:git:https://github.com/secureCodeBox/defectdojo-client-java.git</connection >
68
+ <developerConnection >scm:git:https://github.com/secureCodeBox/defectdojo-client-java.git</developerConnection >
69
+ <url >https://github.com/secureCodeBox/defectdojo-client-java.git</url >
70
+ <tag >defectdojo-client-2.0.0</tag >
71
+ </scm >
72
+
66
73
<properties >
67
74
<maven .version>3.5.0</maven .version>
68
75
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
122
129
<version >${com.fasterxml.jackson.version} </version >
123
130
</dependency >
124
131
<dependency >
125
- <groupId >org.slf4j</groupId >
126
- <artifactId >slf4j-api</artifactId >
127
- <version >2.0.11</version >
132
+ <groupId >org.slf4j</groupId >
133
+ <artifactId >slf4j-api</artifactId >
134
+ <version >2.0.11</version >
128
135
</dependency >
129
136
130
- <dependency >
137
+ <dependency >
131
138
<groupId >org.projectlombok</groupId >
132
139
<artifactId >lombok</artifactId >
133
140
<version >1.18.30</version >
178
185
</dependency >
179
186
</dependencies >
180
187
181
- <distributionManagement >
182
- <snapshotRepository >
183
- <id >ossrh</id >
184
- <url >https://oss.sonatype.org/content/repositories/snapshots</url >
185
- </snapshotRepository >
186
- <repository >
187
- <id >ossrh</id >
188
- <url >https://oss.sonatype.org/service/local/staging/deploy/maven2/</url >
189
- </repository >
190
- </distributionManagement >
191
-
192
188
<profiles >
193
189
<profile >
194
190
<id >release</id >
195
191
<build >
196
192
<plugins >
197
193
<plugin >
194
+ <groupId >org.sonatype.central</groupId >
195
+ <artifactId >central-publishing-maven-plugin</artifactId >
196
+ <version >0.8.0</version >
197
+ <extensions >true</extensions >
198
+ <configuration >
199
+ <publishingServerId >central</publishingServerId >
200
+ <tokenAuth >true</tokenAuth >
201
+ <autoPublish >true</autoPublish >
202
+ <waitUntil >published</waitUntil >
203
+ </configuration >
204
+ </plugin >
205
+ <plugin >
206
+ <groupId >org.apache.maven.plugins</groupId >
198
207
<artifactId >maven-gpg-plugin</artifactId >
199
208
<version >3.1.0</version >
200
209
<executions >
259
268
260
269
<configuration >
261
270
<rules >
262
- <dependencyConvergence />
263
- <requirePluginVersions />
271
+ <dependencyConvergence />
272
+ <requirePluginVersions />
264
273
<requireJavaVersion >
265
274
<version >${project.build.version.target} </version >
266
275
</requireJavaVersion >
319
328
<version >3.2.5</version >
320
329
</plugin >
321
330
322
- <plugin >
323
- <groupId >org.sonatype.plugins</groupId >
324
- <artifactId >nexus-staging-maven-plugin</artifactId >
325
- <version >1.6.13</version >
326
- <extensions >true</extensions >
327
- <configuration >
328
- <serverId >ossrh</serverId >
329
- <nexusUrl >https://oss.sonatype.org/</nexusUrl >
330
- <autoReleaseAfterClose >true</autoReleaseAfterClose >
331
- </configuration >
332
- </plugin >
333
-
334
331
<plugin >
335
332
<artifactId >maven-javadoc-plugin</artifactId >
336
333
<version >3.6.3</version >
380
377
<groupId >org.jacoco</groupId >
381
378
<artifactId >jacoco-maven-plugin</artifactId >
382
379
</plugin >
383
-
384
- <plugin >
385
- <groupId >org.sonatype.plugins</groupId >
386
- <artifactId >nexus-staging-maven-plugin</artifactId >
387
- </plugin >
388
380
</plugins >
389
381
</build >
390
- </project >
382
+
383
+ </project >
0 commit comments