summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml14
1 files changed, 13 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index 827872d91..29460d62c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
- <version>1.2.3-R0.2-SNAPSHOT</version>
+ <version>${bukkitversion}</version>
</dependency>
</dependencies>
@@ -50,10 +50,22 @@
</includes>
</resource>
</resources>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <version>2.4</version>
+ <configuration>
+ <finalName>${project.artifactId}</finalName>
+ <outputDirectory>../jars</outputDirectory>
+ </configuration>
+ </plugin>
+ </plugins>
</build>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ <bukkitversion>1.2.3-R0.3-SNAPSHOT</bukkitversion>
<org-netbeans-modules-editor-indent.CodeStyle.project.expand-tabs>true</org-netbeans-modules-editor-indent.CodeStyle.project.expand-tabs>
<org-netbeans-modules-editor-indent.CodeStyle.project.indent-shift-width>2</org-netbeans-modules-editor-indent.CodeStyle.project.indent-shift-width>
<org-netbeans-modules-editor-indent.CodeStyle.project.spaces-per-tab>2</org-netbeans-modules-editor-indent.CodeStyle.project.spaces-per-tab>