maven install时跳过test

1、方法
在maven install打包时,默认会执行测试方法,如果测试失败则打包失败,所以在打包时可以跳过测试。共有两种方法:

(1)命令方式
mvn install -Dmaven.test.skip = true
(2)配置文件方式
在maven构建包依赖配置文件pom.xml的project元素中添加jar包maven-surefire-plugin,并配置。


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

     

   

 


https://blog.csdn.net/ztchun/article/details/81284779

你可能感兴趣的:(java)