maven install时跳过test

在maven install打包时,默认会执行测试方法,如果测试失败则打包失败,所以在打包时可以跳过测试。共有两种方法:

(1)设置方式
在这里插入图片描述

(2)命令方式
mvn install -Dmaven.test.skip = true

(3)配置文件方式
在maven构建包依赖配置文件pom.xml的project元素中添加jar包maven-surefire-plugin,并配置。

<build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.pluginsgroupId>
        <artifactId>maven-surefire-pluginartifactId>
        <configuration>
          <skip>trueskip>
        configuration>
      plugin>
    plugins>
  build>

你可能感兴趣的:(java工具)