Failed to execute goal
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.
12.4:test (default-test) on project maven01: There are test failures.
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.
12.4:test (default-test) on project maven01: There are test failures.
2018-12-06
舉報(bào)
2018-12-06
在pom.xml文件中加入以下代碼
<build>
<plugins>
<plugin>??
<groupId>org.apache.maven.plugins</groupId>??
<artifactId>maven-surefire-plugin</artifactId>??
<version>2.4.2</version>??
<configuration>??
? <skipTests>true</skipTests>??
</configuration>??
</plugin>
</plugins>
</build>