码迷,mamicode.com
首页 > 系统相关 > 详细

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

时间:2015-04-14 00:48:43      阅读:300      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

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>

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

标签:

原文地址:http://my.oschina.net/baochanghong/blog/400775

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!