|
55 | 55 |
|
56 | 56 | <contributors /> |
57 | 57 |
|
| 58 | + <distributionManagement> |
| 59 | + <repository> |
| 60 | + <id>ossrh</id> |
| 61 | + <name>Maven Central Releases</name> |
| 62 | + <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 63 | + </repository> |
| 64 | + <snapshotRepository> |
| 65 | + <id>ossrh</id> |
| 66 | + <name>Maven Central Snapshots</name> |
| 67 | + <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
| 68 | + </snapshotRepository> |
| 69 | + </distributionManagement> |
| 70 | + |
58 | 71 | <issueManagement> |
59 | 72 | <system>GitHub Issues</system> |
60 | 73 | <url>https://github.com/ascopes/java-compiler-testing/issues</url> |
|
420 | 433 | <groupId>org.apache.maven.plugins</groupId> |
421 | 434 | <artifactId>maven-release-plugin</artifactId> |
422 | 435 | <configuration> |
| 436 | + <!-- Don't bother testing, we do that prior to calling this in CI. --> |
| 437 | + <arguments>-Dmaven.test.skip -Dinvoker.skip -Preleases</arguments> |
| 438 | + <goals>deploy</goals> |
| 439 | + <preparationGoals>clean verify</preparationGoals> |
423 | 440 | <releaseProfiles>releases</releaseProfiles> |
424 | 441 | </configuration> |
425 | 442 | </plugin> |
|
664 | 681 | </build> |
665 | 682 |
|
666 | 683 | <profiles> |
667 | | - <profile> |
668 | | - <id>maven-central</id> |
669 | | - |
670 | | - <distributionManagement> |
671 | | - <repository> |
672 | | - <id>ossrh</id> |
673 | | - <name>Maven Central Releases</name> |
674 | | - <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
675 | | - </repository> |
676 | | - <snapshotRepository> |
677 | | - <id>ossrh</id> |
678 | | - <name>Maven Central Snapshots</name> |
679 | | - <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
680 | | - </snapshotRepository> |
681 | | - </distributionManagement> |
682 | | - </profile> |
683 | | - |
684 | | - <profile> |
685 | | - <id>github</id> |
686 | | - |
687 | | - <distributionManagement> |
688 | | - <repository> |
689 | | - <id>github</id> |
690 | | - <name>GitHub Packages</name> |
691 | | - <url>https://maven.pkg.github.com/${project-slug}</url> |
692 | | - </repository> |
693 | | - <snapshotRepository> |
694 | | - <id>github</id> |
695 | | - <name>GitHub Packages Snapshots</name> |
696 | | - <url>https://maven.pkg.github.com/${project-slug}</url> |
697 | | - </snapshotRepository> |
698 | | - </distributionManagement> |
699 | | - </profile> |
700 | | - |
701 | 684 | <profile> |
702 | 685 | <id>releases</id> |
703 | 686 |
|
|
0 commit comments