maven打包跳过test

方式一:

使用命令:mvn install -Dmaven.test.skip=true 或者 mvn install -DskipTests=true

方式二:

使用surefire插件

      
        org.apache.maven.plugins
        maven-surefire-plugin
        
          true
        
      

方式三;

spring-boot-maven-plugin插件已经集成了maven-surefire-plugin插件
只需要在pom.xml里增加
true


    true

方式四:

通过idea 工具实现,点击右上角 有点像闪电样子的图标,看到 test 被划掉了。然后点击maven 打包的功能就可以跳过测试了。

maven打包跳过test_第1张图片

你可能感兴趣的:(项目管理工具)