|
52 | 52 | </issueManagement> |
53 | 53 |
|
54 | 54 | <distributionManagement> |
| 55 | + <!-- See https://central.sonatype.org/publish/publish-maven/#distribution-management-and-authentication (superseded) --> |
| 56 | + <!-- Ostensibly no longer needed with central-publishing-maven-plugin (see https://central.sonatype.org/publish/publish-portal-maven/) --> |
| 57 | + <!-- |
55 | 58 | <repository> |
56 | 59 | <id>sonatype-oss-repository-hosting</id> |
57 | | - <!-- See https://central.sonatype.org/publish/publish-maven/#distribution-management-and-authentication --> |
58 | 60 | <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
59 | | - </repository> |
| 61 | + </repository> |
| 62 | + --> |
60 | 63 | <site> |
61 | 64 | <id>Github Pages</id> |
62 | 65 | <name>microBean™ Construct Site</name> |
63 | 66 | <url>https://microbean.github.io/microbean-construct/</url> |
64 | 67 | </site> |
| 68 | + <!-- Ostensibly no longer needed with central-publishing-maven-plugin (see https://central.sonatype.org/publish/publish-portal-snapshots/#publishing-with-the-central-publishing-maven-plugin) --> |
| 69 | + <!-- |
65 | 70 | <snapshotRepository> |
66 | | - <id>sonatype-oss-repository-hosting</id> |
67 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 71 | + <id>central.sonatype.com</id> |
| 72 | + <url>https://central.sonatype.com/repository/maven-snapshots/</url> |
68 | 73 | </snapshotRepository> |
| 74 | + --> |
69 | 75 | </distributionManagement> |
70 | 76 |
|
71 | 77 | <properties> |
|
100 | 106 | <maven.site.deploy.skip>true</maven.site.deploy.skip> |
101 | 107 | <relativizeDecorationLinks>false</relativizeDecorationLinks> |
102 | 108 |
|
| 109 | + <!-- Superseded by central-publishing-maven-plugin --> |
103 | 110 | <!-- nexus-staging-maven-plugin properties --> |
104 | 111 | <!-- See https://github.com/sonatype/nexus-maven-plugins/blob/0aee3defb33cb133ff536aba59b11d32a368b1e6/staging/maven-plugin/src/main/java/org/sonatype/nexus/maven/staging/AbstractStagingMojo.java#L169-L175 --> |
105 | | - <stagingProgressTimeoutMinutes>10</stagingProgressTimeoutMinutes> |
| 112 | + <!-- <stagingProgressTimeoutMinutes>10</stagingProgressTimeoutMinutes> --> |
106 | 113 |
|
107 | 114 | <!-- Other properties --> |
108 | 115 | <project.build.sourceEncoding>UTF8</project.build.sourceEncoding> |
|
119 | 126 | <dependency> |
120 | 127 | <groupId>org.junit</groupId> |
121 | 128 | <artifactId>junit-bom</artifactId> |
122 | | - <version>5.13.1</version> |
| 129 | + <version>5.13.2</version> |
123 | 130 | <type>pom</type> |
124 | 131 | <scope>import</scope> |
125 | 132 | </dependency> |
|
269 | 276 | <plugin> |
270 | 277 | <groupId>com.github.spotbugs</groupId> |
271 | 278 | <artifactId>spotbugs-maven-plugin</artifactId> |
272 | | - <version>4.9.3.0</version> |
| 279 | + <version>4.9.3.1</version> |
273 | 280 | </plugin> |
274 | 281 | <plugin> |
275 | 282 | <groupId>org.codehaus.mojo</groupId> |
|
281 | 288 | <artifactId>jandex-maven-plugin</artifactId> |
282 | 289 | <version>3.3.1</version> |
283 | 290 | </plugin> |
| 291 | + <!-- Superseded by central-publishing-maven-plugin --> |
| 292 | + <!-- |
284 | 293 | <plugin> |
285 | 294 | <groupId>org.sonatype.plugins</groupId> |
286 | 295 | <artifactId>nexus-staging-maven-plugin</artifactId> |
287 | 296 | <version>1.6.8</version> |
288 | 297 | <extensions>true</extensions> |
289 | 298 | <dependencies> |
290 | | - <!-- https://issues.sonatype.org/browse/NEXUS-26993?focusedCommentId=1098136&page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#comment-1098136 --> |
291 | 299 | <dependency> |
292 | 300 | <groupId>com.thoughtworks.xstream</groupId> |
293 | 301 | <artifactId>xstream</artifactId> |
|
300 | 308 | <autoReleaseAfterClose>true</autoReleaseAfterClose> |
301 | 309 | </configuration> |
302 | 310 | </plugin> |
| 311 | + --> |
| 312 | + <plugin> |
| 313 | + <groupId>org.sonatype.central</groupId> |
| 314 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 315 | + <version>0.8.0</version> |
| 316 | + <extensions>true</extensions> |
| 317 | + <configuration> |
| 318 | + <publishingServerId>central.sontaype.com</publishingServerId> |
| 319 | + </configuration> |
| 320 | + </plugin> |
303 | 321 | </plugins> |
304 | 322 | </pluginManagement> |
305 | 323 |
|
|
342 | 360 | </systemPropertyVariables> |
343 | 361 | </configuration> |
344 | 362 | </plugin> |
| 363 | + <!-- Superseded by central-publishing-maven-plugin --> |
| 364 | + <!-- |
345 | 365 | <plugin> |
346 | 366 | <groupId>org.sonatype.plugins</groupId> |
347 | 367 | <artifactId>nexus-staging-maven-plugin</artifactId> |
348 | 368 | </plugin> |
| 369 | + --> |
| 370 | + <plugin> |
| 371 | + <groupId>org.sonatype.central</groupId> |
| 372 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 373 | + </plugin> |
349 | 374 | </plugins> |
350 | 375 |
|
351 | 376 | <resources> |
|
0 commit comments