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
When we push tag, the build result on Travis CI will be deployed to Sonatype Nexus. Check Sonatype official page for detail.
Follow the procedures listed in SonarQube official guide.