maven dependencies (mainly bukkit) will now be copied to target/lib

This commit is contained in:
Paul Schulze 2013-02-24 10:44:35 +01:00
parent 8fd26b513a
commit 62e7d558e6

16
pom.xml
View File

@ -18,6 +18,22 @@
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>