Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
mvn release:prepare -DautoVersionSubmodules=true -Dusername=yourGitUsername -Dpassword=yourGitPassword

For a dry run, add -DdryRun=true. If you do a dry run, use mvn release:clean to clean up after you have looked at the output.

...

Note

If you get an error message, try to re-run mvn release:prepare -Dusername=yourSvnUsername -Dpassword=yourSvnPassword -DautoVersionSubmodules=true command again, -Dresume flag is set to true by default and the plugin will resume the release process from where it failed before.

...

Code Block
mvn release:perform -Dusername=yourSvnUsername

Follow the link to get more information about performed operation by release plugin. After this step the artifacts will be hosted by Nexus.

...