Update guava to 23.2-jre, place under dependencyManagement

This is to fix guava #2152 which causes ClassPath to return an empty list when the path of the classloader contains special characters
This commit is contained in:
Adam
2017-10-22 10:15:26 -04:00
parent a13ae2f749
commit 32eeef4a3f
5 changed files with 10 additions and 4 deletions

10
pom.xml
View File

@@ -118,6 +118,16 @@
<module>runelite-proxy</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>23.2-jre</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>