Skip to content

Build all jars and generate maven site

Roman Ivanov edited this page Sep 16, 2015 · 9 revisions

To quickly validate your changes for Uts and Chekstyle style compiance:

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