Skip to content

Commit

Permalink
[JENKINS-38865] Make the root pom not cause issues during release
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenc committed Oct 13, 2016
1 parent dc354c7 commit 2541499
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions pom.xml
Expand Up @@ -59,4 +59,32 @@
<module>pipeline-model-api</module>
<module>pipeline-model-definition</module>
</modules>

<!-- project is just for aggregating, never as a parent, we force skip to ensure we never deploy or install it -->
<build>
<plugins>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.2</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<!-- keep the tag names aligned with previous releases -->
<tagNameFormat>pipeline-model-definition-@{project.version}</tagNameFormat>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 2541499

Please sign in to comment.