maven install

IDEA install项目时报错Please refer to…for the individual test results
在使用maven install项目的时候报这个错误,可以在运行的时候忽略检查即可。
解决方法:

在pom.xml中增加

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <configuration>
                <testFailureIgnore>true</testFailureIgnore>
            </configuration>
        </plugin>
    </plugins>
</build>

更多推荐

Please refer to XXXXXXXXXXX for the individual test result