leonelhl

PARTE2: Plugin maven-dependency-plugin

Jun 28th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.52 KB | None | 0 0
  1. <plugin>
  2.     <groupId>org.apache.maven.plugins</groupId>
  3.     <artifactId>maven-dependency-plugin</artifactId>
  4.     <executions>
  5.         <execution>
  6.             <id>copy</id>
  7.             <phase>install</phase>
  8.             <goals>
  9.                 <goal>copy-dependencies</goal>
  10.             </goals>
  11.             <configuration>
  12.                 <outputDirectory>
  13.                   ${project.build.directory}/lib
  14.                 </outputDirectory>
  15.             </configuration>
  16.         </execution>
  17.     </executions>
  18. </plugin>
Advertisement
Add Comment
Please, Sign In to add comment