无法执行目标org.apache.maven.plugins:maven-resources-plugin:2.7

时间:2017-07-13 16:02:59

标签: java maven

我在maven突然发现了这个错误,我不确定原因:

Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:2.7:resources (default-resources) on project

org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:2.7:resources (default-resources) on project

我在intellij中搜索了2.7以及maven-resources-plugin,但我们还没有使用它们。当我甚至不使用该插件时,为什么maven突然抱怨这个?

2 个答案:

答案 0 :(得分:0)

maven过滤依赖项似乎存在问题。

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.7</version>
<dependencies>
 <dependency>
   <groupId>org.apache.maven.shared</groupId>
   <artifactId>maven-filtering</artifactId>
   <version>1.3</version>
 </dependency>
</dependencies>
</plugin>

答案 1 :(得分:0)

我的src / main / resources中有.der文件,现在删除后会成功构建。