summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorErik Broes <erikbroes@grum.nl>2012-01-14 21:34:05 +0100
committerErik Broes <erikbroes@grum.nl>2012-01-15 10:20:07 +0100
commit039ec8a56342a359790d96a395b74663dce61487 (patch)
tree3106fff737979e7a15eef5048fd466d7ac0bfe15 /pom.xml
parent428a73da657ca0bfd4afe031ea945576a48ca5af (diff)
downloadbukkit-039ec8a56342a359790d96a395b74663dce61487.tar
bukkit-039ec8a56342a359790d96a395b74663dce61487.tar.gz
bukkit-039ec8a56342a359790d96a395b74663dce61487.tar.lz
bukkit-039ec8a56342a359790d96a395b74663dce61487.tar.xz
bukkit-039ec8a56342a359790d96a395b74663dce61487.zip
Add commons-lang to deps
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml25
1 files changed, 22 insertions, 3 deletions
diff --git a/pom.xml b/pom.xml
index f830e14b..5ebc83d5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -103,14 +103,33 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
- <version>10.0</version>
+ <version>10.0.1</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
+ <groupId>commons-lang</groupId>
+ <artifactId>commons-lang</artifactId>
+ <version>2.3</version>
+ </dependency>
+
+ <!-- testing -->
+ <dependency>
<groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.9</version>
+ <artifactId>junit-dep</artifactId>
+ <version>4.10</version>
+ <scope>test</scope>
+ <exclusions>
+ <exclusion>
+ <artifactId>hamcrest-core</artifactId>
+ <groupId>org.hamcrest</groupId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.hamcrest</groupId>
+ <artifactId>hamcrest-library</artifactId>
+ <version>1.2.1</version>
<scope>test</scope>
</dependency>
</dependencies>