Author: fchrist Date: Fri Jun 1 13:09:21 2012 New Revision: 1345153 URL: http://svn.apache.org/viewvc?rev=1345153&view=rev Log: Added more tips and tricks commands for releasing
Modified: incubator/stanbol/site/trunk/content/stanbol/development/index.mdtext Modified: incubator/stanbol/site/trunk/content/stanbol/development/index.mdtext URL: http://svn.apache.org/viewvc/incubator/stanbol/site/trunk/content/stanbol/development/index.mdtext?rev=1345153&r1=1345152&r2=1345153&view=diff ============================================================================== --- incubator/stanbol/site/trunk/content/stanbol/development/index.mdtext (original) +++ incubator/stanbol/site/trunk/content/stanbol/development/index.mdtext Fri Jun 1 13:09:21 2012 @@ -226,4 +226,22 @@ If you want to update to the latest non- to 'false' (default). A backup of the changed POMs is not needed when files are under SVN control. To revert any local changes, you could use - $ svn revert -R * \ No newline at end of file + $ svn revert -R * + +### Exclude files from check for modifcations + +When you use + + $ mvn release:prepare + +it will check for local modifications. If you want to exclude some files from this check, +e.g. a RAT report file named "rat.txt", you can do it like this + + $ mvn release:prepare -DcheckModificationExcludeList=rat.txt + +### Change the comment when creating commiting changes + +The default commit comment starts with "[maven-release-plugin]" when using the Maven Release Plugin. +You can change this and e.g. set it to a Stanbol Jira issue number. + + $ mvn release:prepare -DscmCommentPrefix=STANBOL-XXX: