使用myeclipse自带的maven创建新项目,直接执行maven install报错

技术分享

Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.4.3:test (default-test) on project TestWidget: Execution default-test of goal org.apache.maven.plugins:maven-surefire-plugin:2.4.3:test failed: Unable to load the mojo ‘test‘ in the plugin ‘org.apache.maven.plugins:maven-surefire-plugin:2.4.3‘. A required class is missing: org/apache/maven/surefire/booter/SurefireExecutionException
解决办法:
在pom.xml文件中,追加
     <plugin>
       <groupId>org.apache.maven.plugins</groupId>
       <artifactId>maven-surefire-plugin</artifactId>
       <version>2.12.4</version>
       <configuration>
         <skipTests>true</skipTests>
       </configuration>
    </plugin>

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。