diff options
author | md_5 <md_5@bigpond.com> | 2012-03-15 16:07:57 +1100 |
---|---|---|
committer | md_5 <md_5@bigpond.com> | 2012-03-15 16:07:57 +1100 |
commit | 60ae0559bc332ebb974c2314205de201e539ca20 (patch) | |
tree | c839c507c54b6d8a9f561eb5a33bbacc3a1cc3da | |
parent | 7e3a9f85bf30af859c413459e6b218b8cb93d189 (diff) | |
download | Essentials-60ae0559bc332ebb974c2314205de201e539ca20.tar Essentials-60ae0559bc332ebb974c2314205de201e539ca20.tar.gz Essentials-60ae0559bc332ebb974c2314205de201e539ca20.tar.lz Essentials-60ae0559bc332ebb974c2314205de201e539ca20.tar.xz Essentials-60ae0559bc332ebb974c2314205de201e539ca20.zip |
Add craftbukkit.jar to the output, allowing for easy upload
-rw-r--r-- | pom.xml | 26 |
1 files changed, 26 insertions, 0 deletions
@@ -60,6 +60,32 @@ <outputDirectory>../jars</outputDirectory> </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-dependency-plugin</artifactId> + <version>2.4</version> + <executions> + <execution> + <id>copy</id> + <phase>package</phase> + <goals> + <goal>copy</goal> + </goals> + <configuration> + <artifactItems> + <artifactItem> + <groupId>org.bukkit</groupId> + <artifactId>craftbukkit</artifactId> + <version>${bukkitversion}</version> + <overWrite>true</overWrite> + <outputDirectory>../jars</outputDirectory> + <destFileName>craftbukkit.jar</destFileName> + </artifactItem> + </artifactItems> + </configuration> + </execution> + </executions> + </plugin> </plugins> </build> |