美文网首页程序员Spring-Boot
maven项目打包跳过test

maven项目打包跳过test

作者: 良人与我 | 来源:发表于2018-12-14 19:01 被阅读9次

Maven项目打包时候跳过测试的几个方法这里备注下。

方法一

在 pom 中添加插件的形式

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

方法二

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


image.png

方法三

通过命令

/C:/Users/Administrator/IdeaProjects/pl-style/pl-style-service/src/main/java/com/penglai/project/style/service/impl/OrderInfoServiceImpl.java:

相关文章

网友评论

    本文标题:maven项目打包跳过test

    本文链接:https://www.haomeiwen.com/subject/ppeghqtx.html