|
2368 | 2368 | <groupId>org.sonatype.plugins</groupId>
|
2369 | 2369 | <artifactId>nexus-staging-maven-plugin</artifactId>
|
2370 | 2370 | <version>${dep.nexus-staging-plugin.version}</version>
|
2371 |
| - <extensions>true</extensions> |
| 2371 | + <!-- This plugin is not registered as an extension because it will fail to activate |
| 2372 | + concurrently with the Maven Provisio plugin, as that has its own deployment lifecycle --> |
2372 | 2373 | <configuration>
|
2373 | 2374 | <serverId>ossrh</serverId>
|
2374 | 2375 | <nexusUrl>https://oss.sonatype.org/</nexusUrl>
|
|
2397 | 2398 | <artifactId>presto-maven-plugin</artifactId>
|
2398 | 2399 | </plugin>
|
2399 | 2400 |
|
| 2401 | + <plugin> |
| 2402 | + <groupId>ca.vanzyl.provisio.maven.plugins</groupId> |
| 2403 | + <artifactId>provisio-maven-plugin</artifactId> |
| 2404 | + <version>1.0.18</version> |
| 2405 | + <extensions>true</extensions> |
| 2406 | + </plugin> |
| 2407 | + |
2400 | 2408 | <plugin>
|
2401 | 2409 | <groupId>org.apache.maven.plugins</groupId>
|
2402 | 2410 | <artifactId>maven-compiler-plugin</artifactId>
|
|
2576 | 2584 | <id>deploy-to-ossrh</id>
|
2577 | 2585 | <build>
|
2578 | 2586 | <plugins>
|
| 2587 | + <plugin> |
| 2588 | + <groupId>org.apache.maven.plugins</groupId> |
| 2589 | + <artifactId>maven-deploy-plugin</artifactId> |
| 2590 | + <configuration> |
| 2591 | + <skip>true</skip> |
| 2592 | + </configuration> |
| 2593 | + </plugin> |
2579 | 2594 | <plugin>
|
2580 | 2595 | <groupId>org.sonatype.plugins</groupId>
|
2581 | 2596 | <artifactId>nexus-staging-maven-plugin</artifactId>
|
| 2597 | + <!-- This plugin must be configured manually ("Maven 2" style in the docs) due to the usage of the |
| 2598 | + Maven Provisio plugin, which includes its own deployment lifecycle --> |
| 2599 | + <executions> |
| 2600 | + <execution> |
| 2601 | + <id>default-deploy</id> |
| 2602 | + <phase>deploy</phase> |
| 2603 | + <goals> |
| 2604 | + <goal>deploy</goal> |
| 2605 | + </goals> |
| 2606 | + </execution> |
| 2607 | + </executions> |
| 2608 | + <configuration> |
| 2609 | + <serverId>ossrh</serverId> |
| 2610 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 2611 | + </configuration> |
2582 | 2612 | </plugin>
|
2583 | 2613 | <plugin>
|
2584 | 2614 | <groupId>org.apache.maven.plugins</groupId>
|
|
0 commit comments