前段时间,一个maven plugin大牛email说,现在可以使用-Dskiptests来跳过unit test。
赶忙,看一下git history,看看大牛改了什么来enable上述功能。原来是新加了surfire plugin。
${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
分类目录
- arch/management (17)
- computer (38)
- java/j2ee (305)
- lnmpa (237)
- mac/iphone/ipad/android (11)
- mysql/oracle/postgresql (126)
- os/software (74)
- other (518)
- python (6)
- redis/memcached/mongo (31)
- sitebuild (143)
随便看看
标签云
程序员 创业 人生箴言 eclipse 快捷键 术语 索引 unix命令 vim wordpress java学习笔记 环境变量 oracle内置函数 index 人生 数据类型 nohup tuxedo mysql学习笔记 MS-DOS命令 servlet spring 职场进阶 职业进阶 服务器选购 服务器选型 apache JPA MongoDB 注解 tomcat 子女教育 jquery maven JVM aix命令 网络营销 java异常 seo 人生规划 关键字 css 网络推广 struts 系统优化 成长 frame iframe bluehost jdbc select 我的信仰 oracle函数 cookie HashMap 站长工具 乱码 ArrayList secureCRT jsp session tail find halt 事务 oracle单记录函数 算法 URL window table javascript操作表单元素 String 字符串处理 健康 http 域名 情感 more google A记录 域名解析 netstat 弹出对话框 弹出窗口 框架集 框架 excel 字符串 javascript函数 showModalDialog nginx number 数组 sql frameset 开源程序 java数组 软件 oracle服务友情链接
收藏链接