|
31 | 31 |
|
32 | 32 |
|
33 | 33 | <!-- plugin versions --> |
34 | | - <maven-javadoc-plugin.version>3.3.0</maven-javadoc-plugin.version> |
35 | | - <maven-source-plugin.version>3.2.1</maven-source-plugin.version> |
36 | | - <maven-resources-plugin.version>3.1.0</maven-resources-plugin.version> |
| 34 | + <maven-javadoc-plugin.version>3.11.1</maven-javadoc-plugin.version> |
| 35 | + <maven-source-plugin.version>3.3.1</maven-source-plugin.version> |
| 36 | + <maven-resources-plugin.version>3.3.1</maven-resources-plugin.version> |
37 | 37 | <maven-plugin-annotations.version>3.11.0</maven-plugin-annotations.version> |
38 | 38 | <maven-plugin-plugin.version>3.12.0</maven-plugin-plugin.version> |
| 39 | + <maven-gpg-plugin.version>3.2.7</maven-gpg-plugin.version> |
| 40 | + <nexus-staging-maven-plugin.version>1.7.0</nexus-staging-maven-plugin.version> |
39 | 41 |
|
40 | 42 | <!-- maven version for plugin --> |
41 | 43 | <maven.baseVersion>3.8.2</maven.baseVersion> |
42 | 44 |
|
43 | 45 | <!-- dependency versions --> |
44 | | - <log4j.version>1.2.16</log4j.version> |
45 | | - <junit.version>4.11</junit.version> |
| 46 | + <log4j.version>1.2.17</log4j.version> |
| 47 | + <junit.version>4.13.2</junit.version> |
46 | 48 |
|
47 | 49 | <!-- sonar properties --> |
48 | 50 | <sonar.projectKey>alfasoftware_astra</sonar.projectKey> |
49 | 51 | <sonar.moduleKey>${project.groupId}:${project.artifactId}</sonar.moduleKey> |
50 | 52 | <sonar.organization>alfasoftware</sonar.organization> |
51 | 53 | <sonar.host.url>https://sonarcloud.io</sonar.host.url> |
52 | | - <sonar.java.source>11</sonar.java.source> |
| 54 | + <sonar.java.source>${maven.compiler.source}</sonar.java.source> |
53 | 55 | </properties> |
54 | 56 |
|
55 | 57 | <dependencyManagement> |
|
255 | 257 | <plugin> |
256 | 258 | <groupId>org.sonatype.plugins</groupId> |
257 | 259 | <artifactId>nexus-staging-maven-plugin</artifactId> |
258 | | - <version>1.7.0</version> |
| 260 | + <version>${nexus-staging-maven-plugin.version}</version> |
259 | 261 | <extensions>true</extensions> |
260 | 262 | <configuration> |
261 | 263 | <serverId>ossrh</serverId> |
|
266 | 268 | <plugin> |
267 | 269 | <groupId>org.apache.maven.plugins</groupId> |
268 | 270 | <artifactId>maven-gpg-plugin</artifactId> |
269 | | - <version>1.6</version> |
| 271 | + <version>${maven-gpg-plugin.version}</version> |
270 | 272 | <executions> |
271 | 273 | <execution> |
272 | 274 | <id>sign-artifacts</id> |
|
276 | 278 | </goals> |
277 | 279 | <configuration> |
278 | 280 | <keyname>${gpg.keyname}</keyname> |
279 | | - <passphraseServerId>${gpg.keyname}</passphraseServerId> |
280 | 281 | </configuration> |
281 | 282 | </execution> |
282 | 283 | </executions> |
|
0 commit comments