|
44 | 44 | <url>https://github.com/operator-framework/java-operator-sdk/tree/main</url> |
45 | 45 | </scm> |
46 | 46 |
|
47 | | - <distributionManagement> |
48 | | - <snapshotRepository> |
49 | | - <id>ossrh</id> |
50 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
51 | | - </snapshotRepository> |
52 | | - </distributionManagement> |
53 | | - |
54 | 47 | <properties> |
55 | 48 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
56 | 49 | <java.version>17</java.version> |
|
59 | 52 | <sonar.organization>java-operator-sdk</sonar.organization> |
60 | 53 | <sonar.host.url>https://sonarcloud.io</sonar.host.url> |
61 | 54 | <fabric8-httpclient-impl.name>jdk</fabric8-httpclient-impl.name> |
62 | | - <junit.version>5.13.2</junit.version> |
| 55 | + <junit.version>5.13.3</junit.version> |
63 | 56 | <fabric8-client.version>7.3.1</fabric8-client.version> |
64 | 57 | <slf4j.version>2.0.17</slf4j.version> |
65 | | - <log4j.version>2.25.0</log4j.version> |
| 58 | + <log4j.version>2.25.1</log4j.version> |
66 | 59 | <mokito.version>5.18.0</mokito.version> |
67 | | - <commons-lang3.version>3.17.0</commons-lang3.version> |
| 60 | + <commons-lang3.version>3.18.0</commons-lang3.version> |
68 | 61 | <compile-testing.version>0.21.0</compile-testing.version> |
69 | 62 | <javapoet.version>1.13.0</javapoet.version> |
70 | 63 | <assertj.version>3.27.3</assertj.version> |
71 | 64 | <awaitility.version>4.3.0</awaitility.version> |
72 | 65 | <spring-boot.version>2.7.3</spring-boot.version> |
73 | | - <micrometer-core.version>1.15.1</micrometer-core.version> |
74 | | - <caffeine.version>3.2.1</caffeine.version> |
| 66 | + <micrometer-core.version>1.15.2</micrometer-core.version> |
| 67 | + <caffeine.version>3.2.2</caffeine.version> |
75 | 68 | <mustache.version>0.9.14</mustache.version> |
76 | 69 | <commons.io.version>2.19.0</commons.io.version> |
77 | | - <java.diff.version>4.15</java.diff.version> |
| 70 | + <java.diff.version>4.16</java.diff.version> |
78 | 71 |
|
79 | 72 | <fmt-maven-plugin.version>2.11</fmt-maven-plugin.version> |
80 | 73 | <maven-compiler-plugin.version>3.14.0</maven-compiler-plugin.version> |
81 | 74 | <maven-surefire-plugin.version>3.5.3</maven-surefire-plugin.version> |
| 75 | + <central-publishing-maven-plugin.version>0.8.0</central-publishing-maven-plugin.version> |
82 | 76 | <maven-javadoc-plugin.version>3.11.2</maven-javadoc-plugin.version> |
83 | 77 | <maven-resources-plugin.version>3.3.1</maven-resources-plugin.version> |
84 | 78 | <maven-source-plugin.version>3.3.1</maven-source-plugin.version> |
85 | 79 | <maven-jar-plugin.version>3.4.2</maven-jar-plugin.version> |
86 | 80 | <maven-clean-plugin.version>3.5.0</maven-clean-plugin.version> |
87 | | - <maven-gpg-plugin.version>3.2.7</maven-gpg-plugin.version> |
| 81 | + <maven-gpg-plugin.version>3.2.8</maven-gpg-plugin.version> |
88 | 82 | <nexus-staging-maven-plugin.version>1.7.0</nexus-staging-maven-plugin.version> |
89 | 83 | <maven-deploy-plugin.version>3.0.0</maven-deploy-plugin.version> |
90 | 84 | <maven-install-plugin.version>3.1.4</maven-install-plugin.version> |
91 | 85 | <git-commit-id-maven-plugin.version>9.0.2</git-commit-id-maven-plugin.version> |
92 | 86 | <jib-maven-plugin.version>3.4.6</jib-maven-plugin.version> |
93 | | - <spotless.version>2.44.5</spotless.version> |
| 87 | + <spotless.version>2.46.0</spotless.version> |
94 | 88 | </properties> |
95 | 89 |
|
96 | 90 | <dependencyManagement> |
|
293 | 287 | <groupId>org.apache.maven.plugins</groupId> |
294 | 288 | <artifactId>maven-source-plugin</artifactId> |
295 | 289 | <version>${maven-source-plugin.version}</version> |
| 290 | + <executions> |
| 291 | + <execution> |
| 292 | + <id>attach-sources</id> |
| 293 | + <goals> |
| 294 | + <goal>jar</goal> |
| 295 | + </goals> |
| 296 | + <phase>verify</phase> |
| 297 | + </execution> |
| 298 | + </executions> |
296 | 299 | </plugin> |
297 | 300 | <plugin> |
298 | 301 | <groupId>org.apache.maven.plugins</groupId> |
|
515 | 518 | <plugin> |
516 | 519 | <groupId>org.apache.maven.plugins</groupId> |
517 | 520 | <artifactId>maven-source-plugin</artifactId> |
518 | | - <executions> |
519 | | - <execution> |
520 | | - <id>attach-sources</id> |
521 | | - <goals> |
522 | | - <goal>jar</goal> |
523 | | - </goals> |
524 | | - </execution> |
525 | | - </executions> |
526 | 521 | </plugin> |
527 | 522 | <plugin> |
528 | 523 | <groupId>org.apache.maven.plugins</groupId> |
|
544 | 539 | </executions> |
545 | 540 | </plugin> |
546 | 541 | <plugin> |
547 | | - <groupId>org.sonatype.plugins</groupId> |
548 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
549 | | - <version>${nexus-staging-maven-plugin.version}</version> |
| 542 | + <groupId>org.sonatype.central</groupId> |
| 543 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 544 | + <version>${central-publishing-maven-plugin.version}</version> |
550 | 545 | <extensions>true</extensions> |
551 | 546 | <configuration> |
552 | | - <serverId>ossrh</serverId> |
553 | | - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
554 | | - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 547 | + <publishingServerId>central</publishingServerId> |
| 548 | + <tokenAuth>true</tokenAuth> |
| 549 | + <autoPublish>true</autoPublish> |
| 550 | + <waitUntil>published</waitUntil> |
555 | 551 | </configuration> |
556 | 552 | </plugin> |
557 | 553 | </plugins> |
|
0 commit comments