maven打包忽略test文件夹

2020-07-27  本文已影响0人  忘记_3a6a

当在项目中的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>
上一篇 下一篇

猜你喜欢

热点阅读