상당히 간단한 Maven 프로젝트가 있습니다.
<project>
<dependencies>
...
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/dependencies</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
그러나 m2eclipse에서 다음 오류가 발생합니다.
Description Resource Path Location Type
maven-dependency-plugin (goals "copy-dependencies", "unpack") is not supported by m2e. pom.xml /jasperreports-test line 60 Maven Project Build Lifecycle Mapping Problem
m2eclipse가이 작업을 "지원"하지 않는 이유는 무엇입니까? 메이븐은 그렇게하고, 그것이 제가 정말로 염려하는 전부입니다. 프로젝트에서이 오류를 어떻게 해결할 수 있습니까?