summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorErik Broes <erikbroes@grum.nl>2011-04-03 11:20:01 +0200
committerErik Broes <erikbroes@grum.nl>2011-04-03 11:20:01 +0200
commit6fa9eef18d95a5fa4fec3de7dd4509c9c63526c7 (patch)
tree124868850cec4bf548335f1c2f7e6b57d532bdb6 /pom.xml
parent04ddb17fceb195b6fdca62abc5e2aba8b973ccd4 (diff)
downloadbukkit-6fa9eef18d95a5fa4fec3de7dd4509c9c63526c7.tar
bukkit-6fa9eef18d95a5fa4fec3de7dd4509c9c63526c7.tar.gz
bukkit-6fa9eef18d95a5fa4fec3de7dd4509c9c63526c7.tar.lz
bukkit-6fa9eef18d95a5fa4fec3de7dd4509c9c63526c7.tar.xz
bukkit-6fa9eef18d95a5fa4fec3de7dd4509c9c63526c7.zip
Package org.avaje:ebean, org.yaml:snakeyaml inside Bukkit's jar so people refusing to use maven have an easier time
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml49
1 files changed, 33 insertions, 16 deletions
diff --git a/pom.xml b/pom.xml
index 073f8eac..bf7df695 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,13 +1,13 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.bukkit</groupId>
- <artifactId>bukkit</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <name>Bukkit</name>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <url>http://www.bukkit.org</url>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.bukkit</groupId>
+ <artifactId>bukkit</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ <name>Bukkit</name>
+ <properties>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ </properties>
+ <url>http://www.bukkit.org</url>
<build>
<plugins>
<plugin>
@@ -19,25 +19,42 @@
<target>1.5</target>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-shade-plugin</artifactId>
+ <version>1.4</version>
+ <executions>
+ <execution>
+ <phase>package</phase>
+ <goals>
+ <goal>shade</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
<dependencies>
- <dependency>
- <groupId>org.yaml</groupId>
- <artifactId>snakeyaml</artifactId>
- <version>1.7</version>
- <type>jar</type>
- <scope>compile</scope>
- </dependency>
+ <dependency>
+ <groupId>org.yaml</groupId>
+ <artifactId>snakeyaml</artifactId>
+ <version>1.7</version>
+ <type>jar</type>
+ <scope>compile</scope>
+ </dependency>
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>1.1</version>
+ <type>jar</type>
+ <scope>compile</scope>
</dependency>
<dependency>
<groupId>org.avaje</groupId>
<artifactId>ebean</artifactId>
<version>2.7.3</version>
+ <type>jar</type>
+ <scope>compile</scope>
</dependency>
</dependencies>
</project>