bookmark

Copy dependency of a maven project to specific folder - Stack Overflow


Description

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-dependency-plugin</artifactId>
    <executions>
        <execution>
            <id>copy-dependencies</id>
            <phase>package</phase>
            <goals>
                <goal>copy-dependencies</goal>
            </goals>
            <configuration>
                <outputDirectory>${project.build.directory}/alternateLocation</outputDirectory>
            </configuration>
        </execution>
    </executions>
</plugin>

Preview

Tags

Users

  • @jil

Comments and Reviews