maven打包忽略test文件夹

时间:2022-01-10 14:35:26

当在项目中的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>

3、如果用了idea,可以在打包时将skip test按钮按下,然后再install

maven打包忽略test文件夹