मेरे पास एक बहुत ही सरल मावेन परियोजना है:
<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 इस कार्य को "समर्थन" नहीं करता है? मावेन करता है, और यह सब मुझे वास्तव में परवाह है। मैं दूर जाने के लिए अपनी परियोजना में यह त्रुटि कैसे प्राप्त कर सकता हूं?