Skip to content

Commit

Permalink
force using Maven deploy plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
UrielCh committed Jul 29, 2015
1 parent 4bd49a0 commit 9bcdf62
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@

<build>
<plugins>
<plugin> <!-- updated on 29/07/2015 -->
<!--
<plugin> updated on 29/07/2015
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.3</version>
Expand All @@ -53,7 +54,7 @@
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>

-->
<plugin> <!-- updated on 29/07/2015 -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
Expand Down Expand Up @@ -166,6 +167,16 @@
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<!--
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
-->
</distributionManagement>

<profiles>
Expand Down Expand Up @@ -234,6 +245,8 @@
<artifactId>maven-release-plugin</artifactId>
<version>2.5.2</version>
<configuration>
<mavenExecutorId>forked-path</mavenExecutorId>
<arguments>-Psonatype-oss-release</arguments>
<autoVersionSubmodules>false</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
Expand Down

0 comments on commit 9bcdf62

Please sign in to comment.