aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYuli Shlosberg <ys9693@att.com>2018-08-15 14:28:54 +0300
committerYuli Shlosberg <ys9693@att.com>2018-08-15 14:28:54 +0300
commitee3afa74714e46f57c00c075d01b8808c7caee67 (patch)
tree61489fd4ec9ab182d7b9b49ecd00364c8de89725
parentfb8fc907bb763b0a37e70ee3ac8ee624bc922920 (diff)
fix guava security violation
Change-Id: Icc12417856638602ac114470d6a8aab8a0bb5280 Issue-ID: SDC-1471 Signed-off-by: Yuli Shlosberg <ys9693@att.com>
-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>