summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormd_5 <md_5@bigpond.com>2012-03-15 16:07:57 +1100
committermd_5 <md_5@bigpond.com>2012-03-15 16:07:57 +1100
commit60ae0559bc332ebb974c2314205de201e539ca20 (patch)
treec839c507c54b6d8a9f561eb5a33bbacc3a1cc3da
parent7e3a9f85bf30af859c413459e6b218b8cb93d189 (diff)
downloadEssentials-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.xml26
1 files changed, 26 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 29460d62c..4bfd52174 100644
--- a/pom.xml
+++ b/pom.xml
@@ -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>