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

来源:互联网 发布:淘宝联盟下载 编辑:程序博客网 时间:2024/05/19 17:10

三种方法:

方法1:

To skip running the tests for a particular project, set the skipTests property to true.
<project>   
   [...]    
  <build>   
    <plugins>   
      <plugin>   
        <groupId>org.apache.maven.plugins</groupId>   
        <artifactId>maven-surefire-plugin</artifactId>   
        <version>2.4.2</version>   
        <configuration>   
          <skipTests>true</skipTests>   
        </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


0 0
原创粉丝点击