maven打包忽略test文件夹

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

有两种方法:

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

2、在pom.xml中配置

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

你可能感兴趣的:(maven打包忽略test文件夹)