美文网首页
maven打包忽略test文件夹

maven打包忽略test文件夹

作者: 忘记_3a6a | 来源:发表于2020-07-27 19:04 被阅读0次

当在项目中的test中写了单元测试后,在mvn install打包时会自动进行所有单元测试,所以这时需要忽略test文件夹

有两种方法:

1、用命令的方式:mvn install -Dmaven.test.skip=true

2、在pom.xml中配置

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

相关文章

网友评论

      本文标题:maven打包忽略test文件夹

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