• How to skip running unit test in V3 modules?
    • Add the parameter -Dmaven.test.skip=true in the command line, more details
  • How to build V3 offline?
    • Try setting the "updatePolicy" to "never" in your $HOME/.m2/settings.xml for the java.net repositories as below, and run "mvn -o" option :
    • <repository>
    • <id>java.net-m2-repository</id>
    • <url>http://download.java.net/maven/2</url&gt;
    • <layout>default</layout>
    • <snapshots>
    • <updatePolicy>always</updatePolicy>
    • </snapshots>
    • </repository>
    • Do this for http://download.java.net/maven/glassfish repository as well.
    • When you want to refresh things, run "mvn -U" option.