|
71 | 71 | <java.testversion>1.8</java.testversion>
|
72 | 72 | <java.version>1.8</java.version>
|
73 | 73 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
74 |
| - <version.hamcrest>2.2</version.hamcrest> |
75 |
| - <version.itu>1.8.0</version.itu> |
| 74 | + |
| 75 | + <version.itu>1.10.2</version.itu> |
76 | 76 | <version.jackson>2.17.0</version.jackson>
|
77 |
| - <version.joni>2.1.41</version.joni> |
78 |
| - <version.junit>5.9.2</version.junit> |
| 77 | + <version.joni>2.2.1</version.joni> |
79 | 78 | <version.logback>1.3.14</version.logback>
|
80 | 79 | <version.slf4j>2.0.13</version.slf4j>
|
81 |
| - <version.surefire>3.0.0</version.surefire> |
| 80 | + |
| 81 | + <version.hamcrest>2.2</version.hamcrest> |
| 82 | + <version.junit>5.10.2</version.junit> |
82 | 83 | <version.undertow>2.2.31.Final</version.undertow>
|
| 84 | + |
| 85 | + <version.jacoco-maven-plugin>0.8.12</version.jacoco-maven-plugin> |
| 86 | + <version.maven-compiler-plugin>3.13.0</version.maven-compiler-plugin> |
| 87 | + <version.maven-bundle-plugin>5.1.9</version.maven-bundle-plugin> |
| 88 | + <version.maven-gpg-plugin>1.6</version.maven-gpg-plugin> |
| 89 | + <version.maven-javadoc-plugin>3.6.3</version.maven-javadoc-plugin> |
| 90 | + <version.maven-source-plugin>3.3.1</version.maven-source-plugin> |
| 91 | + <version.maven-surefire-junit5-tree-reporter>1.2.1</version.maven-surefire-junit5-tree-reporter> |
| 92 | + <version.maven-surefire-plugin>3.2.5</version.maven-surefire-plugin> |
| 93 | + <version.moditect-maven-plugin>1.2.1.Final</version.moditect-maven-plugin> |
| 94 | + <version.nexus-staging-maven-plugin>1.6.13</version.nexus-staging-maven-plugin> |
83 | 95 | </properties>
|
84 | 96 |
|
85 | 97 | <dependencies>
|
|
184 | 196 | <plugin>
|
185 | 197 | <groupId>org.apache.felix</groupId>
|
186 | 198 | <artifactId>maven-bundle-plugin</artifactId>
|
187 |
| - <version>5.1.8</version> |
| 199 | + <version>${version.maven-bundle-plugin}</version> |
188 | 200 | <extensions>true</extensions>
|
189 | 201 | <configuration>
|
190 | 202 | <instructions>
|
|
202 | 214 | <plugin>
|
203 | 215 | <groupId>org.sonatype.plugins</groupId>
|
204 | 216 | <artifactId>nexus-staging-maven-plugin</artifactId>
|
205 |
| - <version>1.6.8</version> |
| 217 | + <version>${version.nexus-staging-maven-plugin}</version> |
206 | 218 | <extensions>true</extensions>
|
207 | 219 | <configuration>
|
208 | 220 | <serverId>ossrh</serverId>
|
|
214 | 226 | <plugin>
|
215 | 227 | <groupId>org.apache.maven.plugins</groupId>
|
216 | 228 | <artifactId>maven-source-plugin</artifactId>
|
217 |
| - <version>3.0.1</version> |
| 229 | + <version>${version.maven-source-plugin}</version> |
218 | 230 | <executions>
|
219 | 231 | <execution>
|
220 | 232 | <id>attach-sources</id>
|
|
228 | 240 | <plugin>
|
229 | 241 | <groupId>org.apache.maven.plugins</groupId>
|
230 | 242 | <artifactId>maven-javadoc-plugin</artifactId>
|
231 |
| - <version>3.4.0</version> |
| 243 | + <version>${version.maven-javadoc-plugin}</version> |
232 | 244 | <executions>
|
233 | 245 | <execution>
|
234 | 246 | <id>attach-javadocs</id>
|
|
245 | 257 | <plugin>
|
246 | 258 | <groupId>org.apache.maven.plugins</groupId>
|
247 | 259 | <artifactId>maven-compiler-plugin</artifactId>
|
248 |
| - <version>3.6.1</version> |
| 260 | + <version>${version.maven-compiler-plugin}</version> |
249 | 261 | <configuration>
|
250 | 262 | <source>${java.version}</source>
|
251 | 263 | <target>${java.version}</target>
|
|
270 | 282 | <plugin>
|
271 | 283 | <groupId>org.apache.maven.plugins</groupId>
|
272 | 284 | <artifactId>maven-surefire-plugin</artifactId>
|
273 |
| - <version>${version.surefire}</version> |
| 285 | + <version>${version.maven-surefire-plugin}</version> |
274 | 286 | <configuration>
|
275 | 287 | <argLine>@{argLine} -Duser.language=en -Duser.region=GB</argLine>
|
276 | 288 | <reportFormat>plain</reportFormat>
|
|
291 | 303 | <dependency>
|
292 | 304 | <groupId>me.fabriciorby</groupId>
|
293 | 305 | <artifactId>maven-surefire-junit5-tree-reporter</artifactId>
|
294 |
| - <version>1.1.0</version> |
| 306 | + <version>${version.maven-surefire-junit5-tree-reporter}</version> |
295 | 307 | </dependency>
|
296 | 308 | </dependencies>
|
297 | 309 | </plugin>
|
298 | 310 |
|
299 | 311 | <plugin>
|
300 | 312 | <groupId>org.jacoco</groupId>
|
301 | 313 | <artifactId>jacoco-maven-plugin</artifactId>
|
302 |
| - <version>0.8.10</version> |
| 314 | + <version>${version.jacoco-maven-plugin}</version> |
303 | 315 |
|
304 | 316 | <configuration>
|
305 | 317 | <excludes>
|
|
346 | 358 | <plugin>
|
347 | 359 | <groupId>org.apache.maven.plugins</groupId>
|
348 | 360 | <artifactId>maven-surefire-report-plugin</artifactId>
|
349 |
| - <version>${version.surefire}</version> |
| 361 | + <version>${version.maven-surefire-plugin}</version> |
350 | 362 | </plugin>
|
351 | 363 | </plugins>
|
352 | 364 | </reporting>
|
|
366 | 378 | <plugin>
|
367 | 379 | <groupId>org.apache.maven.plugins</groupId>
|
368 | 380 | <artifactId>maven-gpg-plugin</artifactId>
|
369 |
| - <version>1.6</version> |
| 381 | + <version>${version.maven-gpg-plugin}</version> |
370 | 382 | <executions>
|
371 | 383 | <execution>
|
372 | 384 | <id>sign-artifacts</id>
|
|
391 | 403 | <plugin>
|
392 | 404 | <groupId>org.moditect</groupId>
|
393 | 405 | <artifactId>moditect-maven-plugin</artifactId>
|
394 |
| - <version>1.0.0.Final</version> |
| 406 | + <version>${version.moditect-maven-plugin}</version> |
395 | 407 | <executions>
|
396 | 408 | <execution>
|
397 | 409 | <id>add-module-infos</id>
|
|
0 commit comments