Versions Compared

Key

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

...

Making a release candidate

  • To publish a release candidate, remove the "-SNAPSHOT" and add "-RC{X}" to all pom.xml.
    For example, to do the first release candidate on 3.5.5, first run:

    Code Block
    languagexml
    title.m2 settings
    mvn clean org.codehaus.mojo:versions-maven-plugin:2.7:set -DnewVersion=3.5.5-RC0


  • Make sure all the pom changed to the new version. For example, you could do a search in the project for previous versions. Some files (other than pom.xml) might also contain a hard coded version.
  • Clean your working directory:

    Code Block
    languagexml
    title.m2 settings
    mvn clean
    git clean -fxd



Publishing

Once three PMC members have voted for a release, it may be published.

...