summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorWesley Wolfe <weswolf@aol.com>2013-07-03 03:48:53 -0500
committerWesley Wolfe <weswolf@aol.com>2013-07-03 03:55:54 -0500
commitfdd53f9ddccfd7dd630643346cab23784588e119 (patch)
tree08b2402859b93724af70d451117a97da10eea6c5 /pom.xml
parentc00db5f751bd0d96298dc17e39d8befb6dc9b29c (diff)
downloadcraftbukkit-fdd53f9ddccfd7dd630643346cab23784588e119.tar
craftbukkit-fdd53f9ddccfd7dd630643346cab23784588e119.tar.gz
craftbukkit-fdd53f9ddccfd7dd630643346cab23784588e119.tar.lz
craftbukkit-fdd53f9ddccfd7dd630643346cab23784588e119.tar.xz
craftbukkit-fdd53f9ddccfd7dd630643346cab23784588e119.zip
Improve maps.yml. Fixes BUKKIT-4419
Additionally fixed Minecart's interface to map INVALID methods.
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml29
1 files changed, 27 insertions, 2 deletions
diff --git a/pom.xml b/pom.xml
index 7257f871..8b22a1cc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -295,9 +295,34 @@
</configuration>
</plugin>
<plugin>
+ <artifactId>maven-resources-plugin</artifactId>
+ <version>2.4.3</version>
+ <executions>
+ <execution>
+ <id>maps-file</id>
+ <phase>package</phase>
+ <goals>
+ <goal>copy-resources</goal>
+ </goals>
+ <configuration>
+ <outputDirectory>${basedir}/target</outputDirectory>
+ <resources>
+ <resource>
+ <directory>${basedir}</directory>
+ <filtering>true</filtering>
+ <includes>
+ <include>maps.yml</include>
+ </includes>
+ </resource>
+ </resources>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
<groupId>com.wolvereness</groupId>
<artifactId>overmapped</artifactId>
- <version>0.0.1</version>
+ <version>0.0.2</version>
<executions>
<execution>
<phase>package</phase>
@@ -305,7 +330,7 @@
<goal>map</goal>
</goals>
<configuration>
- <maps>${basedir}/maps.yml</maps>
+ <maps>${basedir}/target/maps.yml</maps>
<input>${basedir}/target/${project.artifactId}-${project.version}.jar</input>
<original>${basedir}/target/unmapped-${project.artifactId}-${project.version}.jar</original>
</configuration>