Return to Snippet

Revision: 5052
at February 7, 2008 22:32 by arunpjohny


Initial Code
/* Add the below propety to .m2/conf/settings.xml in the active profile */
<maven.test.skip>true</maven.test.skip>

of

/* Add the following property property to the maven-surefire-plugin plugin in the pom.xml*/
<skip>true</skip>

Initial URL
http://maven.apache.org/plugins/maven-surefire-plugin/test-mojo.html

Initial Description
Property skip will skip both compilation and execution of tests.
Property skipTests   will compile tests but will skip executing them

Initial Title
Disable running tests during build

Initial Tags


Initial Language
Other