1.错误:“target\surefire-reports for the individual test results.”
测试的插件出现问题,在pom.xml中添加,忽略测试异常:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<testFailureIgnore>true</testFailureIgnore>
</configuration>
</plugin>