|
66 | 66 | <properties>
|
67 | 67 | <maven.compiler.source>1.8</maven.compiler.source>
|
68 | 68 | <maven.compiler.target>1.8</maven.compiler.target>
|
69 |
| - <maven.deploy.plugin.version>3.1.1</maven.deploy.plugin.version> |
| 69 | + <maven.deploy.plugin.version>3.1.2</maven.deploy.plugin.version> |
70 | 70 | <log4j.version>2.20.0</log4j.version>
|
71 | 71 | <log4j.version>2.23.1</log4j.version>
|
72 | 72 | <slf4j.version>2.0.7</slf4j.version>
|
|
78 | 78 | <lambda.core.version>1.2.3</lambda.core.version>
|
79 | 79 | <lambda.events.version>3.11.2</lambda.events.version>
|
80 | 80 | <lambda.serial.version>1.1.2</lambda.serial.version>
|
81 |
| - <maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version> |
| 81 | + <maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version> |
82 | 82 | <aspectj.version>1.9.7</aspectj.version>
|
83 | 83 | <aspectj-maven-plugin.version>1.14</aspectj-maven-plugin.version>
|
84 | 84 | <maven-surefire-plugin.version>3.1.2</maven-surefire-plugin.version>
|
85 |
| - <jacoco-maven-plugin.version>0.8.10</jacoco-maven-plugin.version> |
| 85 | + <jacoco-maven-plugin.version>0.8.12</jacoco-maven-plugin.version> |
86 | 86 | <nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version>
|
87 | 87 | <maven-javadoc-plugin.version>3.6.3</maven-javadoc-plugin.version>
|
88 | 88 | <maven-source-plugin.version>3.3.0</maven-source-plugin.version>
|
|
97 | 97 | <project.rootdir>${maven.multiModuleProjectDirectory}</project.rootdir>
|
98 | 98 | </properties>
|
99 | 99 |
|
| 100 | + <distributionManagement> |
| 101 | + <snapshotRepository> |
| 102 | + <id>ossrh</id> |
| 103 | + <url>https://aws.oss.sonatype.org/content/repositories/snapshots</url> |
| 104 | + </snapshotRepository> |
| 105 | + </distributionManagement> |
| 106 | + |
100 | 107 | <dependencyManagement>
|
101 | 108 | <dependencies>
|
102 | 109 | <dependency>
|
|
457 | 464 | <id>release</id>
|
458 | 465 | <build>
|
459 | 466 | <plugins>
|
| 467 | + <plugin> |
| 468 | + <groupId>org.apache.maven.plugins</groupId> |
| 469 | + <artifactId>maven-enforcer-plugin</artifactId> |
| 470 | + <version>3.5.0</version> |
| 471 | + <executions> |
| 472 | + <execution> |
| 473 | + <id>enforce-snapshot-versions</id> |
| 474 | + <phase>validate</phase> |
| 475 | + <goals> |
| 476 | + <goal>enforce</goal> |
| 477 | + </goals> |
| 478 | + <configuration> |
| 479 | + <rules> |
| 480 | + <requireSnapshotVersion> |
| 481 | + <message>Release build should not have snapshot dependencies!</message> |
| 482 | + </requireSnapshotVersion> |
| 483 | + </rules> |
| 484 | + <fail>true</fail> |
| 485 | + </configuration> |
| 486 | + </execution> |
| 487 | + </executions> |
| 488 | + </plugin> |
460 | 489 | <plugin>
|
461 | 490 | <groupId>org.apache.maven.plugins</groupId>
|
462 | 491 | <artifactId>maven-gpg-plugin</artifactId>
|
|
0 commit comments