aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml22
1 files changed, 17 insertions, 5 deletions
diff --git a/pom.xml b/pom.xml
index d545367..f0383b1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -78,11 +78,23 @@
<version>1.3.2</version>
</dependency>
- <dependency>
- <groupId>org.reflections</groupId>
- <artifactId>reflections</artifactId>
- <version>0.9.11</version>
- </dependency>
+ <dependency>
+ <groupId>org.reflections</groupId>
+ <artifactId>reflections</artifactId>
+ <version>0.9.11</version>
+ <exclusions>
+ <exclusion> <!-- declare the exclusion here -->
+ <groupId>com.google.guava</groupId>
+ <artifactId>guava</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>com.google.guava</groupId>
+ <artifactId>guava</artifactId>
+ <scope>compile</scope>
+ <version>25.1-jre</version>
+ </dependency>
</dependencies>