Maven 参数 -Dskiptests 和 -Dmaven.test.skip

发表于: java/j2ee | 作者: | 日期: 2014/1/21 07:01
标签:

前段时间,一个maven plugin大牛email说,现在可以使用-Dskiptests来跳过unit test。
赶忙,看一下git history,看看大牛改了什么来enable上述功能。原来是新加了surfire plugin。
org.apache.maven.plugins
maven-surefire-plugin
2.6

-Xms512M -Xmx512M

${project.build.directory}/generated-classes/emma/classes



${logbackConfig}



又看文档了解到-Dskiptests是surefire特有的环境参数,而 -Dmaven.test.skip是maven built-in的环境变量。
来源:http://blog.csdn.net/shanling2004/article/details/6710473
==================
方法1:
To skip running the tests for a particular project, set the skipTests property to true.
[…]
< build>
< plugins>
< plugin>
< groupId>org.apache.maven.plugins
< artifactId>maven-surefire-plugin
< version>2.4.2
< configuration>
< skipTests>true
< /configuration>
< /plugin>
< /plugins>
< /build>
[…]
< /project>

方法2:
You can also skip the tests via command line by executing the following command:

mvn install -DskipTests

方法3:
If you absolutely must, you can also use the maven.test.skip property to skip compiling the tests. maven.test.skip is honored by Surefire and the Compiler Plugin.

mvn install -Dmaven.test.skip=true

来源:http://blog.csdn.net/jiushuai/article/details/7478372

: https://blog.darkmi.com/2014/01/21/3597.html

本文相关评论 - 1条评论都没有呢
Post a comment now » 本文目前不可评论

No comments yet.

Sorry, the comment form is closed at this time.