zoukankan      html  css  js  c++  java
  • 使Maven 2在package、install等阶段跳过运行Test的配置

     

    方法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

     

  • 相关阅读:
    Js/Jquery获取iframe中的元素
    js常用技巧汇总
    jquery常用技巧
    Tomcat远程调试
    常用SQL
    CRM-stark组件
    面试题-linux基础
    vue2-通过axios实现数据请求
    Vue01
    面试题之python基础
  • 原文地址:https://www.cnblogs.com/jifeng/p/5859144.html
Copyright © 2011-2022 走看看