maven打包时跳过测试

运行mvn install时跳过Test

 

方法一:


  [...]
  
    
      
        org.apache.maven.plugins
        maven-surefire-plugin
        2.18.1
        
          true
        
      
    
  
  [...]


方法二:

mvn install -DskipTests

或者

mvn install -Dmaven.test.skip=true

 

详情参考:http://maven.apache.org/surefire/maven-surefire-plugin/examples/skipping-test.html

你可能感兴趣的:(maven)