jcabi-dynamodb-maven-plugin icon indicating copy to clipboard operation
jcabi-dynamodb-maven-plugin copied to clipboard

maven error

Open mohitanchlia opened this issue 10 years ago • 2 comments

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 avatar Dec 15 '14 21:12 mohitanchlia

@mohitanchlia I'm not sure how to fix this, since I'm not using Eclipse... maybe you know?

yegor256 avatar Dec 16 '14 07:12 yegor256

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"

tfeak avatar Sep 21 '15 16:09 tfeak