There are test failures when compiling maven

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.10:test (default-test) on project web_nanchang: There are test failures.

[ERROR]

[ERROR] Please refer to E:\maven\web_nanchang\target\surefire-reports for the individual test results.

Solution:

This is because the test code encounters an error and it stops compiling. Just add the following configuration to <project> in pom.xml , so that test errors do not affect the compilation of the project.

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

 

 If you want to skip the test, add the following code:

<plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.18.1</version>
        <configuration>
          <skipTests>true</skipTests>
        </configuration>
      </plugin>

 

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=327046600&siteId=291194637