五郎. 发表于 2017-1-12 10:17:43

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

maven编译项目错误提示:
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>
页: [1]
查看完整版本: maven 编译提示Failed to execute goal org.apache.maven.plugins:maven-resources-plugin