1) -Dmaven.test.failure.ignore
This one will allow you to see the failures but it will not fails
the build process.
Ah ok, thx.
2) -Dmaven.test.skip
This will by-pass running tests during build process.
Trying this, i got a „java.lang.OutOfMemoryError: PermGen space”. After doing a: set MAVEN_OPTS="-Xmx512M -XX:MaxPermSize=512M" this also works fine.
