eclipse maven 项目 打包跳过 测试 test 打包

原文链接: https://my.oschina.net/ouminzy/blog/786932

在 项目的 pom 里面 加上


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

            
 

命令:

mvn install -DskipTests

或者

mvn install -Dmaven.test.skip=true

转载于:https://my.oschina.net/ouminzy/blog/786932

你可能感兴趣的:(eclipse maven 项目 打包跳过 测试 test 打包)