使Maven 2在package、install等阶段跳过运行Test的配置

本文介绍了如何在Maven项目中设置属性跳过特定测试,包括通过XML配置、命令行参数及环境变量的方式,实现测试的灵活管理和控制。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Skipping Tests 

To skip running the tests for a particular project, set the skipTests property to true. 

Xml代码    收藏代码
  1. <project>  
  2.   [...]  
  3.   <build>  
  4.     <plugins>  
  5.       <plugin>  
  6.         <groupId>org.apache.maven.plugins</groupId>  
  7.         <artifactId>maven-surefire-plugin</artifactId>  
  8.         <version>2.4.2</version>  
  9.         <configuration>  
  10.           <skipTests>true</skipTests>  
  11.         </configuration>  
  12.       </plugin>  
  13.     </plugins>  
  14.   </build>  
  15.   [...]  
  16. </project>  


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

mvn install -DskipTests 

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://mysun.iteye.com/blog/403502

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值