maven编译,打包的时候跳过test

方式1:用命令带上参数

mvn install -Dmaven.test.skip=true

 

方式2:在pom.xml里面配置 

 

1

2

3

4

5

6

7

8

9

      

        org.apache.maven.plugins

        maven-surefire-plugin

        

          true

        

      


 

 

 

 

idea中运行maven安装jar包到本地仓库跳过test

 

bubuko.com,布布扣

你可能感兴趣的:(Maven)