maven忽略测试的三种方法

来源:互联网 发布:淘宝店铺怎样设置红包 编辑:程序博客网 时间:2024/05/18 01:32

方法一:  命令行加参数的方法

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


方法二:使用maven插件的方法

<plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-surefire-plugin</artifactId><version>2.18.1</version><configuration><skipTests>true</skipTests></configuration></plugin>


方法三:使用定义变量的方法

<properties><skipTests>true</skipTests></properties>或者<properties><maven.test.skip>true</maven.test.skip></properties>


很实用,希望对大家有用

7 0