i get a project with dependencies like this:

    <dependencies>
        <dependency>
            <groupId>groupA</groupId>
            <artifactId>artifactC</artifactId>
            <version>1.0.0-SNAPSHOT</version>
        </dependency>
        <dependency>
            <groupId>groupA</groupId>
            <artifactId>artifactC</artifactId>
            <version>1.0.0-SNAPSHOT</version>
        </dependency>
    </dependencies>

when i am runnging *mvn
org.apache.maven.plugins:maven-dependency-plugin:2.1:copy-dependencies, *the
dependies are named with *artifactId-version.jar*.
so, one component is lost without any promptions.

Is there any ways two keep both artifactC? or rename jars like *
groupId-artifactId-version.jar*

Reply via email to