jcabi-dynamodb-maven-plugin
jcabi-dynamodb-maven-plugin copied to clipboard
maven error
When I configure plugin in eclipse I get the following error:
maven-dependency-plugin (goals "copy-dependencies", "unpack") is not supported by m2e.
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.8</version>
<executions>
<execution>
<id>unpack-dynamodb-local</id>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>com.jcabi</groupId>
<artifactId>DynamoDBLocal</artifactId>
<version>2014-10-07</version>
<type>zip</type>
<outputDirectory>${project.build.directory}/dynamodb-dist</outputDirectory>
<overWrite>false</overWrite>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
@mohitanchlia I'm not sure how to fix this, since I'm not using Eclipse... maybe you know?
This is an oddity of the Eclipse maven plugin. There are a few solutions to be found on Stack Overflow. The most complete answer I've found is here: https://www.eclipse.org/m2e/documentation/m2e-execution-not-covered.html
But the simplest solution I found was to go to the Eclipse Maven preferences and under "Errors/Warning" set the handling of this particular issue to "Ignore"