MAVEN 在执行package/install阶段跳过test步骤的方法

http://blog.csdn.net/jiushuai/article/details/7478372

注意:在Maven3.2.5中验证通过。


方法1:

To skip running the tests for a particular project, set the skipTests property to true.
   
   [...]    
     
       
         
        org.apache.maven.plugins   
        maven-surefire-plugin   
        2.4.2   
           
          true   
        
   
      
   
    
   
  
   
   [...]    
 
方法2:

You can also skip the tests via command line by executing the following command:

mvn install -DskipTests

方法3:

If you absolutely must, you can also use the maven.test.skip property to skip compiling the tests. maven.test.skip is honored by Surefire and the Compiler Plugin.

mvn install -Dmaven.test.skip=true


你可能感兴趣的:(Maven,maven)