|
58 | 58 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
59 | 59 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
60 | 60 | <java.version>9</java.version> |
| 61 | + |
| 62 | + <!-- Dependency versions --> |
61 | 63 | <jetty.version>9.4.7.v20170914</jetty.version> |
62 | 64 | <spring-boot-starter.version>2.0.0.M5</spring-boot-starter.version> |
63 | 65 | <lombok.version>1.16.18</lombok.version> |
|
68 | 70 | <javax.servlet-api.version>4.0.0</javax.servlet-api.version> |
69 | 71 | <httpclient5.version>5.0-alpha2</httpclient5.version> |
70 | 72 | <tomcat-embed.version>9.0.1</tomcat-embed.version> |
| 73 | + <mockito-core.version>2.10.0</mockito-core.version> |
| 74 | + <assertj-core.version>3.8.0</assertj-core.version> |
| 75 | + |
| 76 | + <!-- Plugin versions --> |
| 77 | + <dockerfile-maven-plugin.version>1.3.6</dockerfile-maven-plugin.version> |
| 78 | + <coveralls-maven-plugin.version>3.1.0</coveralls-maven-plugin.version> |
| 79 | + <maven-war-plugin.version>3.1.0</maven-war-plugin.version> |
| 80 | + <jacoco-maven-plugin.version>0.7.9</jacoco-maven-plugin.version> |
| 81 | + <maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version> |
| 82 | + <maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version> |
71 | 83 |
|
72 | 84 | <!-- server ports --> |
73 | 85 | <server-jetty.https.port>8447</server-jetty.https.port> |
|
76 | 88 | <server-tomcat.http.port>8089</server-tomcat.http.port> |
77 | 89 | <server-undertow.https.port>8448</server-undertow.https.port> |
78 | 90 | <server-undertow.http.port>8088</server-undertow.http.port> |
79 | | - <mockito-core.version>2.10.0</mockito-core.version> |
80 | | - <assertj-core.version>3.8.0</assertj-core.version> |
81 | 91 | </properties> |
82 | 92 |
|
83 | 93 | <dependencyManagement> |
|
256 | 266 | <plugin> |
257 | 267 | <groupId>org.apache.maven.plugins</groupId> |
258 | 268 | <artifactId>maven-compiler-plugin</artifactId> |
259 | | - <version>3.7.0</version> |
260 | 269 | <configuration> |
261 | 270 | <source>9</source> |
262 | 271 | <target>9</target> |
|
266 | 275 | <plugin> |
267 | 276 | <groupId>org.jacoco</groupId> |
268 | 277 | <artifactId>jacoco-maven-plugin</artifactId> |
269 | | - <version>0.7.9</version> |
270 | 278 | <executions> |
271 | 279 | <!-- |
272 | 280 | Prepares the property pointing to the JaCoCo runtime agent which |
|
312 | 320 | <plugin> |
313 | 321 | <groupId>org.eluder.coveralls</groupId> |
314 | 322 | <artifactId>coveralls-maven-plugin</artifactId> |
315 | | - <version>3.1.0</version> |
316 | 323 | <configuration> |
317 | 324 | <relativeReportDirs> |
318 | 325 | <relativeReportDir>/jacoco-it</relativeReportDir> |
|
331 | 338 | <plugin> |
332 | 339 | <groupId>com.spotify</groupId> |
333 | 340 | <artifactId>dockerfile-maven-plugin</artifactId> |
334 | | - <version>1.3.6</version> |
| 341 | + <version>${dockerfile-maven-plugin.version}</version> |
| 342 | + </plugin> |
| 343 | + <plugin> |
| 344 | + <groupId>org.eluder.coveralls</groupId> |
| 345 | + <artifactId>coveralls-maven-plugin</artifactId> |
| 346 | + <version>${coveralls-maven-plugin.version}</version> |
| 347 | + </plugin> |
| 348 | + <plugin> |
| 349 | + <groupId>org.apache.maven.plugins</groupId> |
| 350 | + <artifactId>maven-war-plugin</artifactId> |
| 351 | + <version>${maven-war-plugin.version}</version> |
| 352 | + </plugin> |
| 353 | + <plugin> |
| 354 | + <groupId>org.jacoco</groupId> |
| 355 | + <artifactId>jacoco-maven-plugin</artifactId> |
| 356 | + <version>${jacoco-maven-plugin.version}</version> |
| 357 | + </plugin> |
| 358 | + <plugin> |
| 359 | + <groupId>org.apache.maven.plugins</groupId> |
| 360 | + <artifactId>maven-compiler-plugin</artifactId> |
| 361 | + <version>${maven-compiler-plugin.version}</version> |
| 362 | + </plugin> |
| 363 | + <plugin> |
| 364 | + <groupId>org.apache.maven.plugins</groupId> |
| 365 | + <artifactId>maven-surefire-plugin</artifactId> |
| 366 | + <version>${maven-surefire-plugin.version}</version> |
335 | 367 | </plugin> |
336 | 368 | </plugins> |
337 | 369 | </pluginManagement> |
|
0 commit comments