Versions Compared

Key

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

...

Code Block
export GPG_TTY=$(tty)

mvn clean install dependency-check:check -Pfull-build -Papache-release -DskipTests

...

Build and check that the release branch is in good shape

Run spotBugs, checkstyle, rat and rat OWASP checks:

Code Block
git checkout $WORK_BRANCH
git clean -xdf
# perform quality checks
mvn clean apache-rat:check -DskipTests -Pfull-build -Papache-release
mvn clean install checkstyle:check spotbugs:check dependency-check:check -DskipTests -Pfull-build -Papache-release

...