Created
March 15, 2012 09:11
-
-
Save iamkristian/2043110 to your computer and use it in GitHub Desktop.
educate maven-release-plugin to know abuot grails versioning
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-release-plugin</artifactId> | |
<version>2.2.1</version> | |
<configuration> | |
<autoVersionSubmodules>true</autoVersionSubmodules> | |
<preparationGoals>grails:set-version scm:checkin clean install</preparationGoals> | |
<completionGoals>grails:set-version scm:checkin</completionGoals> | |
<goals>scm:checkin</goals> | |
<arguments>-Dbasedir=. -Dincludes=application.properties -Dmessage="adding grails properties to release"</arguments> | |
</configuration> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-scm-plugin</artifactId> | |
<version>1.6</version> | |
</plugin> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment