|
51 | 51 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
52 | 52 | <maven.compiler.release>11</maven.compiler.release>
|
53 | 53 | <!-- Dependencies Versions -->
|
54 |
| - <slf4j.version>[2.0.9,3.0.0)</slf4j.version> |
| 54 | + <slf4j.version>2.0.12</slf4j.version> |
55 | 55 | <cleverclient.version>1.1.0</cleverclient.version>
|
56 |
| - <lombok.version>[1.18.30,2.0.0)</lombok.version> |
57 |
| - <jackson.version>[2.15.2,3.0.0)</jackson.version> |
58 |
| - <json.schema.version>[4.31.1,5.0.0)</json.schema.version> |
59 |
| - <junit.version>[5.10.0,6.0.0)</junit.version> |
60 |
| - <mockito.version>[5.5.0,6.0.0)</mockito.version> |
| 56 | + <lombok.version>1.18.30</lombok.version> |
| 57 | + <jackson.version>2.16.1</jackson.version> |
| 58 | + <json.schema.version>4.33.1</json.schema.version> |
| 59 | + <junit.version>5.10.2</junit.version> |
| 60 | + <mockito.version>5.10.0</mockito.version> |
61 | 61 | <!-- Plugins Versions -->
|
62 |
| - <compiler.version>3.11.0</compiler.version> |
63 |
| - <surefire.version>3.1.2</surefire.version> |
64 |
| - <exec.version>3.1.0</exec.version> |
65 |
| - <jacoco.version>0.8.10</jacoco.version> |
66 |
| - <helper.version>3.4.0</helper.version> |
| 62 | + <compiler.version>3.12.1</compiler.version> |
| 63 | + <enforcer.version>3.4.1</enforcer.version> |
| 64 | + <surefire.version>3.2.5</surefire.version> |
| 65 | + <exec.version>3.1.1</exec.version> |
| 66 | + <jacoco.version>0.8.11</jacoco.version> |
| 67 | + <helper.version>3.5.0</helper.version> |
| 68 | + <versions.version>2.16.2</versions.version> |
67 | 69 | <source.version>3.3.0</source.version>
|
68 |
| - <javadoc.version>3.5.0</javadoc.version> |
| 70 | + <javadoc.version>3.6.3</javadoc.version> |
69 | 71 | <gpg.version>3.1.0</gpg.version>
|
70 | 72 | <sonatype.version>1.6.13</sonatype.version>
|
71 | 73 | </properties>
|
|
301 | 303 | <artifactId>maven-compiler-plugin</artifactId>
|
302 | 304 | <version>${compiler.version}</version>
|
303 | 305 | </plugin>
|
| 306 | + <plugin> |
| 307 | + <groupId>org.apache.maven.plugins</groupId> |
| 308 | + <artifactId>maven-enforcer-plugin</artifactId> |
| 309 | + <version>${enforcer.version}</version> |
| 310 | + <executions> |
| 311 | + <execution> |
| 312 | + <id>enforce-maven</id> |
| 313 | + <goals> |
| 314 | + <goal>enforce</goal> |
| 315 | + </goals> |
| 316 | + <configuration> |
| 317 | + <rules> |
| 318 | + <requireMavenVersion> |
| 319 | + <version>3.6.3</version> |
| 320 | + </requireMavenVersion> |
| 321 | + </rules> |
| 322 | + </configuration> |
| 323 | + </execution> |
| 324 | + </executions> |
| 325 | + </plugin> |
304 | 326 | <plugin>
|
305 | 327 | <groupId>org.apache.maven.plugins</groupId>
|
306 | 328 | <artifactId>maven-surefire-plugin</artifactId>
|
|
338 | 360 | </execution>
|
339 | 361 | </executions>
|
340 | 362 | </plugin>
|
| 363 | + <plugin> |
| 364 | + <groupId>org.codehaus.mojo</groupId> |
| 365 | + <artifactId>versions-maven-plugin</artifactId> |
| 366 | + <version>${versions.version}</version> |
| 367 | + <configuration> |
| 368 | + <ruleSet> |
| 369 | + <ignoreVersions> |
| 370 | + <ignoreVersion> |
| 371 | + <type>regex</type> |
| 372 | + <version>.+-(alpha|beta).*</version> |
| 373 | + </ignoreVersion> |
| 374 | + </ignoreVersions> |
| 375 | + </ruleSet> |
| 376 | + </configuration> |
| 377 | + </plugin> |
341 | 378 | </plugins>
|
342 | 379 | </build>
|
343 | 380 | </project>
|
0 commit comments