Author: tchemit Date: 2010-01-24 19:44:48 +0100 (Sun, 24 Jan 2010) New Revision: 120 Modified: trunk/maven-jredmine-plugin/src/site/apt/usage.apt Log: finish usage page Modified: trunk/maven-jredmine-plugin/src/site/apt/usage.apt =================================================================== --- trunk/maven-jredmine-plugin/src/site/apt/usage.apt 2010-01-24 18:31:36 UTC (rev 119) +++ trunk/maven-jredmine-plugin/src/site/apt/usage.apt 2010-01-24 18:44:48 UTC (rev 120) @@ -98,7 +98,15 @@ Work around a release In this section we show how to interact when releasing a project. - + + For all this actions, you will need a authenticated connexion to redmine + server (fill the <<username>> and <<password>> properties), or give them + on commandline via + +------------------------------------------------------------------------------ + -Dredmine.username=login -Dredmine.password=password +------------------------------------------------------------------------------ + * Release the current version ------------------------------------------------------------------------------ @@ -116,7 +124,9 @@ </executions> <configuration> <projectId>myProject</projectId> - <versionId>1.0.0</versionId> + <versionId>1.1</versionId> + <username>login</username> + <password>password</password> <closeVersion>true</closeVersion> </configuration> </plugin> @@ -126,7 +136,9 @@ ------------------------------------------------------------------------------ -mvn jredmine:update-version -DcloseVersion +mvn jredmine:update-version -DprojectId=myPoject\ + -DcloseVersion -DversionId=1.1 \ + -Dredmine.username=login -Dredmine.password=password ------------------------------------------------------------------------------ Full detail about this goal can be found {{{./update-version-mojo.html}here}}. @@ -149,6 +161,8 @@ <configuration> <projectId>myProject</projectId> <versionId>1.1</versionId> + <username>login</username> + <password>password</password> <previousVersionName>1.0</previousVersionName> </configuration> </plugin> @@ -158,7 +172,9 @@ ------------------------------------------------------------------------------ -mvn jredmine:next-version -DpreviousVersionName=1.0 +mvn jredmine:next-version -DprojectId=myPoject\ + -DversionId=1.1 -DpreviousVersionName=1.0\ + -Dredmine.username=login -Dredmine.password=password ------------------------------------------------------------------------------ Full detail about this goal can be found {{{./next-version-mojo.html}here}}. @@ -180,7 +196,9 @@ </executions> <configuration> <projectId>myProject</projectId> - <versionId>1.0</versionId> + <versionId>1.1</versionId> + <username>login</username> + <password>password</password> <!-- for a multi-module just run on root project --> <runOnce>true</runOnce> @@ -210,6 +228,8 @@ </executions> <configuration> <projectId>myProject</projectId> + <username>login</username> + <password>password</password> <!-- for a multi-module just run on root project --> <runOnce>true</runOnce>