maven打包跳过测试_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > maven打包跳过测试

maven打包跳过测试

 2016/5/22 5:32:12  InJavaWeTrust  程序员俱乐部  我要评论(0)
  • 摘要:maven打包跳过测试在pom.xml配置文件中加上下面xml配置即可。<build><plugins><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-surefire-plugin</artifactId><configuration><skip>true</skip><
  • 标签:测试 Maven

maven打包跳过测试

?

???????? 在pom.xml配置文件中加上下面xml配置即可。

class="xml"><build>
  <plugins>
    <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-surefire-plugin</artifactId>
      <configuration>
        <skip>true</skip>
      </configuration>
    </plugin>
  </plugins>
</build>

?

? ?
发表评论
用户名: 匿名