maven install时报错Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin 问题方法

针对上面的问题有两种解决办法:

1使用命令行解决
mvn clean package -Dmaven.test.skip=true 
2在pom.xml文件中添加插件信息
			
                org.apache.maven.plugins
                maven-surefire-plugin
                
                    true
                
            

你可能感兴趣的:(java)