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>

猜你喜欢

转载自yudey.iteye.com/blog/1984952