|
37 | 37 |
|
38 | 38 | <distributionManagement> |
39 | 39 | <snapshotRepository> |
40 | | - <id>ossrh</id> |
41 | | - <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
| 40 | + <id>central</id> |
| 41 | + <url>https://central.sonatype.com/repository/maven-snapshots/</url> |
42 | 42 | </snapshotRepository> |
43 | 43 | <repository> |
44 | | - <id>ossrh</id> |
45 | | - <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 44 | + <id>central</id> |
| 45 | + <url>https://central.sonatype.com/</url> |
46 | 46 | </repository> |
47 | 47 | </distributionManagement> |
48 | 48 |
|
|
54 | 54 |
|
55 | 55 | <!-- Dependencies Versions --> |
56 | 56 | <lombok.version>1.18.38</lombok.version> |
57 | | - <jackson.version>2.19.0</jackson.version> |
| 57 | + <jackson.version>2.19.1</jackson.version> |
58 | 58 | <okhttp.version>4.12.0</okhttp.version> |
59 | 59 | <slf4j.version>2.0.17</slf4j.version> |
60 | | - <junit.version>[5.11.0,6.0.0)</junit.version> |
61 | | - <mockito.version>[5.14.0,6.0.0)</mockito.version> |
| 60 | + <junit.version>[5.11.0,5.99.99)</junit.version> |
| 61 | + <mockito.version>[5.14.0,5.99.99)</mockito.version> |
62 | 62 |
|
63 | 63 | <!-- Plugins Versions --> |
64 | 64 | <compiler.version>3.14.0</compiler.version> |
65 | | - <enforcer.version>3.5.0</enforcer.version> |
| 65 | + <enforcer.version>3.6.0</enforcer.version> |
66 | 66 | <surefire.version>3.5.3</surefire.version> |
67 | | - <exec.version>3.5.0</exec.version> |
| 67 | + <exec.version>3.5.1</exec.version> |
68 | 68 | <jacoco.version>0.8.13</jacoco.version> |
69 | | - <helper.version>3.6.0</helper.version> |
| 69 | + <helper.version>3.6.1</helper.version> |
70 | 70 | <versions.version>2.18.0</versions.version> |
71 | 71 | <source.version>3.3.1</source.version> |
72 | 72 | <javadoc.version>3.11.2</javadoc.version> |
73 | | - <gpg.version>3.2.7</gpg.version> |
74 | | - <sonatype.version>1.7.0</sonatype.version> |
75 | | - <spotless.version>2.44.4</spotless.version> |
| 73 | + <gpg.version>3.2.8</gpg.version> |
| 74 | + <central.version>0.8.0</central.version> |
| 75 | + <spotless.version>2.44.5</spotless.version> |
76 | 76 | <dependency.version>3.8.1</dependency.version> |
77 | 77 | </properties> |
78 | 78 |
|
|
182 | 182 | </executions> |
183 | 183 | </plugin> |
184 | 184 | <plugin> |
185 | | - <groupId>org.sonatype.plugins</groupId> |
186 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
187 | | - <version>${sonatype.version}</version> |
| 185 | + <groupId>org.sonatype.central</groupId> |
| 186 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 187 | + <version>${central.version}</version> |
188 | 188 | <extensions>true</extensions> |
189 | 189 | <configuration> |
190 | | - <serverId>ossrh</serverId> |
191 | | - <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
192 | | - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 190 | + <publishingServerId>central</publishingServerId> |
| 191 | + <autoPublish>true</autoPublish> |
| 192 | + <waitUntil>published</waitUntil> |
193 | 193 | </configuration> |
194 | 194 | </plugin> |
195 | 195 | </plugins> |
|
344 | 344 | <ignoreVersions> |
345 | 345 | <ignoreVersion> |
346 | 346 | <type>regex</type> |
347 | | - <version>.+-(alpha|beta).*</version> |
| 347 | + <version>(?i).*-(alpha|beta|m|rc)([-.]?\d+)?</version> |
348 | 348 | </ignoreVersion> |
349 | 349 | </ignoreVersions> |
350 | 350 | </ruleSet> |
|
0 commit comments