[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:3.0.0-M1:test (default

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:3.0.0-M1:test (default-test) on project leshan-integration-tests: There are test failures.
[ERROR] 
[ERROR] Please refer to /home/ubuntu/leshan/leshan-integration-tests/target/surefire-reports for the individual test results.
[ERROR] Please refer to dump files (if any exist) [date].dump, [date]-jvmRun[N].dump and [date].dumpstream.
[ERROR] -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
[ERROR] 
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR]   mvn -rf :leshan-integration-tests

解决方法1:mvn package -Dmaven.test.failture.ignore=true安装,但没有成功。
解决方法2:使用插件,在相应pom.xml文件里面,修改


    
        
            org.apache.maven.plugins
            maven-surefire-plugin
            
                true
            

        

    

 
添加了红色配置部分,成功。
 

你可能感兴趣的:(《软件》IDEA)