Add Guava and jsr305 to dependencies.

This commit is contained in:
sk89q 2014-07-12 19:38:30 -07:00
parent 6deafa660d
commit ab46fd6244
2 changed files with 15 additions and 0 deletions

14
pom.xml
View File

@ -137,6 +137,20 @@
<scope>compile</scope>
<type>jar</type>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>10.0.1</version> <!-- Bukkit only bundles 10.0.1 -->
<scope>compile</scope> <!-- required runtime dependency -->
<type>jar</type>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>1.3.9</version>
</dependency>
<dependency>
<groupId>org.khelekore</groupId>

View File

@ -32,4 +32,5 @@
<allow pkg="org.yaml.snakeyaml"/>
<allow pkg="au.com.bytecode.opencsv"/>
<allow pkg="org.khelekore.prtree"/>
<allow pkg="com.google.common"/>
</import-control>