target\surefire-reports for the individual test results.错误解决方法

打包失败报了这个错误,这是测试不通过的原因,取消扯上就好辣。

解决方法

方法一

直接使用idea的maven插件,选择跳过测试打包的功能
target\surefire-reports for the individual test results.错误解决方法_第1张图片

方法二

增加插件的配置

	<plugin>
		<groupId>org.apache.maven.pluginsgroupId>
		<artifactId>maven-surefire-pluginartifactId>
		<configuration>
			
			<testFailureIgnore>truetestFailureIgnore>
			
			<skip>trueskip>
		configuration>
	plugin>

方法三

执行命令加上跳过测试的参数

mvn clean install -DskipTests

或者这个命令

mvn clean install -Dmaven.test.skip=true

你可能感兴趣的:(maven,idea,maven,intellij-idea,java)