summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorErik Broes <erikbroes@grum.nl>2011-04-03 11:21:40 +0200
committerErik Broes <erikbroes@grum.nl>2011-04-03 11:21:40 +0200
commit5a0426205144862306d1a8d0e03e722df4bf803d (patch)
treedb5cf3c2d2530c1985198be1e5b8a56f404e8ae0 /pom.xml
parent083e3ebd6ea77e223ca5d4dc14b27031fe778109 (diff)
downloadcraftbukkit-5a0426205144862306d1a8d0e03e722df4bf803d.tar
craftbukkit-5a0426205144862306d1a8d0e03e722df4bf803d.tar.gz
craftbukkit-5a0426205144862306d1a8d0e03e722df4bf803d.tar.lz
craftbukkit-5a0426205144862306d1a8d0e03e722df4bf803d.tar.xz
craftbukkit-5a0426205144862306d1a8d0e03e722df4bf803d.zip
Prevent junit:junit from being packaged as its not needed to run
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml15
1 files changed, 15 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index facd8baa..0de1979d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -47,21 +47,29 @@
<groupId>net.sf.jopt-simple</groupId>
<artifactId>jopt-simple</artifactId>
<version>3.2</version>
+ <type>jar</type>
+ <scope>compile</scope>
</dependency>
<dependency>
<groupId>jline</groupId>
<artifactId>jline</artifactId>
<version>0.9.94</version>
+ <type>jar</type>
+ <scope>compile</scope>
</dependency>
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>3.7.2</version>
+ <type>jar</type>
+ <scope>compile</scope>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.14</version>
+ <type>jar</type>
+ <scope>compile</scope>
</dependency>
</dependencies>
<!-- This builds a completely 'ready to start' jar with all dependencies inside -->
@@ -134,6 +142,13 @@
<goals>
<goal>shade</goal>
</goals>
+ <configuration>
+ <artifactSet>
+ <excludes>
+ <exclude>junit:junit</exclude>
+ </excludes>
+ </artifactSet>
+ </configuration>
</execution>
</executions>
</plugin>