maven build忽略单元测试的2种方式

阅读更多

1:build加虚拟机参数方式

clean package -Dspring.profiles.active="test"  
                      -Dproname.config.path=/D:/proname/config
                      -Dic.assistant.logging.path=C:/ic_log    
                      -Dmaven.test.skip=true
// -Dmaven.test.skip=true 表示忽略单元测试
// maven build

 2:在maven pom.xml文件中配置


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

 

你可能感兴趣的:(maven,build忽略单元测试,maven,单元测试)