Skip to content

Build all jars and generate maven site

Matt Tucker edited this page Nov 28, 2015 · 9 revisions

To quickly validate your changes for Uts and Checkstyle style compliance:

mvn clean verify

To quickly generate all binaries (and ".......-all.jar" too):

mvn clean package -Passembly

To make the site only:

mvn clean site [-Dlinkcheck.skip=true]

It will located is in the directory "target/site/index.html"

To generate pmd report:

mvn pmd:check

Report will printed in terminal output

To generate findbugs report:

mvn clean compile findbugs:check

Report will printed in terminal output