Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 1.34 KB

RELEASE_PROCEDURE.md

File metadata and controls

37 lines (23 loc) · 1.34 KB

Release procedure

When you release fixed version of SonarQube SpotBugs Plugin, please follow these procedures.

  • create topic branch from master branch
git checkout -b master-release
  • Make sure profile XMLs are updated. See generate_progiles/README.md for detail.

  • change version number in pom.xml to stable version (e.g. 1.2.3), then commit changes

mvn versions:set -DnewVersion=1.2.3
  • change version number in pom.xml to next development SNAPSHOT version (e.g. 1.2.4-SNAPSHOT), then commit changes
mvn versions:set -DnewVersion=1.2.4-SNAPSHOT
  • push your topic branch and propose a pull request
  • after merging your pull request, tag the commit which has stable version in pom.xml, and push this tag

Release to Maven Central

When we push tag, the build result on Travis CI will be deployed to Sonatype Nexus. Check Sonatype official page for detail.

Release to SonarQube Marketplace

Follow the procedures listed in SonarQube official guide.

Here is the SonarCloud dashboard for this project.