Copying project dependencies

Project dependencies are the dependencies declared in your pom. To copy them with their transitive dependencies, use the dependency:copy-dependencies mojo and configure the plugin like the sample below:

  1. <project>
  2. [...]
  3. <build>
  4. <plugins>
  5. <plugin>
  6. <groupId>org.apache.maven.plugins</groupId>
  7. <artifactId>maven-dependency-plugin</artifactId>
  8. <version>3.1.2</version>
  9. <executions>
  10. <execution>
  11. <id>copy-dependencies</id>
  12. <phase>package</phase>
  13. <goals>
  14. <goal>copy-dependencies</goal>
  15. </goals>
  16. <configuration>
  17. <outputDirectory>${project.build.directory}/alternateLocation</outputDirectory>
  18. <overWriteReleases>false</overWriteReleases>
  19. <overWriteSnapshots>false</overWriteSnapshots>
  20. <overWriteIfNewer>true</overWriteIfNewer>
  21. </configuration>
  22. </execution>
  23. </executions>
  24. </plugin>
  25. </plugins>
  26. </build>
  27. [...]
  28. </project>

Excluding transitive dependencies

As mentioned, transitive dependencies are copied by default. However, they can also be excluded by setting the excludeTransitive property to true.

  1. <project>
  2. [...]
  3. <build>
  4. <plugins>
  5. <plugin>
  6. <groupId>org.apache.maven.plugins</groupId>
  7. <artifactId>maven-dependency-plugin</artifactId>
  8. <version>3.1.2</version>
  9. <executions>
  10. <execution>
  11. <id>copy-dependencies</id>
  12. <phase>package</phase>
  13. <goals>
  14. <goal>copy-dependencies</goal>
  15. </goals>
  16. <configuration>
  17. <outputDirectory>${project.build.directory}/alternateLocation</outputDirectory>
  18. <overWriteReleases>false</overWriteReleases>
  19. <overWriteSnapshots>true</overWriteSnapshots>
  20. <excludeTransitive>true</excludeTransitive>
  21. </configuration>
  22. </execution>
  23. </executions>
  24. </plugin>
  25. </plugins>
  26. </build>
  27. [...]
  28. </project>