eclipse maven install 跳过 test 阶段

Posted sz_zzm

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了eclipse maven install 跳过 test 阶段相关的知识,希望对你有一定的参考价值。

1:命令行

$mvn install -Dmaven.test.skip = true

 

2:配置文件

<project>
  [...]
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <skip>true</skip>
        </configuration>
      </plugin>
    </plugins>
  </build>
  [...]
</project>















以上是关于eclipse maven install 跳过 test 阶段的主要内容,如果未能解决你的问题,请参考以下文章

Maven clean install 跳过单元测试

maven install 跳过测试

如何配置 Maven 安装以跳过 Eclipse 中的测试?

Maven install跳过测试文件检查的方法

如何让idea在maven install时跳过test 模块

eclipse debug as-->maven install 报 is not a maven project