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>

你可能感兴趣的:(maven install 跳过 测试 test)