Hi all,
Is there a simple way to not build the test classes?
mvn clean install -Dmaven.test.skip=true
Walter
Hi all,
Is there a simple way to not build the test classes?
mvn clean install -Dmaven.test.skip=true
Walter
Run a phase that doesn't include test-compile
, for example compile
.
mvn clean compile
According to the documentation on the Maven Surefire Plugin, your example should skip both compilation and execution of the tests.