Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions openfasttrace-mc-deployable-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,16 +56,6 @@ It is maintained separately from the main parent POM for the following reasons:
</execution>
</executions>
</plugin>
<!-- This plugin needs to be skipped when using the central-publishing-maven-plugin
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.4</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</profile>
Expand Down
25 changes: 13 additions & 12 deletions parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -582,6 +582,16 @@
</execution>
</executions>
</plugin>
<!-- The maven-deploy-plugin MUST be disabled when using the central-publishing-maven-plugin!
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<!-- The version does not really matter if all we want is disabling the plugin -->
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<!--This
plugin's configuration is used to store Eclipse
m2e settings only. It has no influence on the Maven build itself. -->
Expand Down Expand Up @@ -669,16 +679,7 @@
</plugin>
</plugins>
</reporting>
<distributionManagement>
<repository>
<id>central</id>
<name>Maven Central</name>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>central</id>
<name>Maven Central Snapshots</name>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
<!-- With the central-publishing-plugin, the distribution management section
is now obsolete, since the only place this plugin can deploy to is Maven
central anyway. -->
</project>
12 changes: 0 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,4 @@
<module>reporter/aspec</module>
<module>testutil</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.4</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>
23 changes: 0 additions & 23 deletions testutil/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -73,29 +73,6 @@
<useModulePath>false</useModulePath>
</configuration>
</plugin>
<!-- Skip everything that has to do with deployment to Maven Central -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<configuration>
<autoPublish>false</autoPublish>
<skipPublishing>true</skipPublishing>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>