maven打包时跳过测试

运行mvn install时跳过Test

方法一:
  
  [...]  
    
      
        
        org.apache.maven.plugins  
        maven-surefire-plugin  
        2.18.1  
          
          true  
          
        
      
    
  [...]  
  
方法二:

mvn install -DskipTests
或者
mvn install -Dmaven.test.skip=true

详情参考:maven-surefire-plugin/examples/skipping-tests

你可能感兴趣的:(maven打包时跳过测试)