We Recommend

Pro Apache Pro Apache
In addition to installation, maintenance, and deployment, the book demonstrates how to configure Apache to use Perl, PHP, and Python as server-side scripting languages. And unlike other books on Apache, Pro Apache provides comprehensive information on both major revisions - 1.3 and 2.0 - of the software.


Posted By

arunpjohny on 02/07/08


Tagged

maven


Versions (?)


Disable running tests during build


Published in: Other 


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

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


  1. /* Add the below propety to .m2/conf/settings.xml in the active profile */
  2. <maven.test.skip>true</maven.test.skip>
  3.  
  4. of
  5.  
  6. /* Add the following property property to the maven-surefire-plugin plugin in the pom.xml*/
  7. <skip>true</skip>

Report this snippet 

You need to login to post a comment.