使用maven遇到的问题 org.apache.maven.plugins:maven-surefire-plugin:2.12.4

Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.12.4:xxxx(default-test) on project xxxx: Execution default-test of goal org.apache.maven.plugins:maven-surefire-plugin:2.12.4:test failed: Unable to load the mojo 'xxxx' in the plugin 'org.apache.maven.plugins:maven-surefire-plugin:2.12.4'. A 
解决办法:
在pom.xml文件中,追加
     
       org.apache.maven.plugins
       maven-surefire-plugin
       2.12.4
       
         true
       

   

你可能感兴趣的:(使用maven遇到的问题 org.apache.maven.plugins:maven-surefire-plugin:2.12.4)