Advertisement
Guest User

Untitled

a guest
Jun 16th, 2016
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.65 KB | None | 0 0
  1. <project>
  2.   [...]
  3.   <build>
  4.     <plugins>
  5.       <plugin>
  6.         <groupId>org.apache.maven.plugins</groupId>
  7.         <artifactId>maven-dependency-plugin</artifactId>
  8.         <version>2.10</version>
  9.         <executions>
  10.           <execution>
  11.             <id>copy-dependencies</id>
  12.             <phase>process-resources</phase>
  13.             <goals>
  14.               <goal>copy-dependencies</goal>
  15.             </goals>
  16.             <configuration>
  17.               <outputDirectory>${dir.javaLibs}</outputDirectory>
  18.             </configuration>
  19.           </execution>
  20.         </executions>
  21.       </plugin>
  22.     </plugins>
  23.   </build>
  24.   [...]
  25. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement