maven 编译提示Failed to execute goal org.apache.maven.plugins:maven-resources-plugin_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > maven 编译提示Failed to execute goal org.apache.maven.plugins:maven-resources-plugin

maven 编译提示Failed to execute goal org.apache.maven.plugins:maven-resources-plugin

 2013/12/4 12:26:10  yudey  程序员俱乐部  我要评论(0)
  • 摘要:maven编译项目错误提示:Failedtoexecutegoalorg.apache.maven.plugins:maven-resources-plugin:2.6:resources缺少maven依赖插件maven-resources-plugin需要注意的是,要看需要什么样的版本,我的提示缺少2.6版本的,请根据实际情况在pom.xml中介入以下代码就好了:引用<dependency><groupId>org.apache.maven.plugins<
  • 标签:failed 编译 Plugin Apache Maven
maven编译项目错误提示:
class="java" name="code">Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:2.6:resources

缺少maven依赖插件maven-resources-plugin

需要注意的是,要看需要什么样版本,我的提示缺少2.6版本的,请根据实际情况

在pom.xml中介入以下代码就好了:
引用<dependency>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-resources-plugin</artifactId>
        <version>2.6</version>
    </dependency>
发表评论
用户名: 匿名