diff options
author | Taka Cho <tc012c@att.com> | 2018-09-15 12:30:42 -0400 |
---|---|---|
committer | Patrick Brady <pb071s@att.com> | 2018-09-17 14:50:25 +0000 |
commit | ed1bc60409ff56c44ee7bce26dbe2bdecc599ad1 (patch) | |
tree | d96ab02476a30a3409d82ca2432631d0ff4b9cf4 | |
parent | 2e247cfb288c0c8fcca6e0ab444af663b753cf79 (diff) |
remove guava security
upgrade version to 26.0-jre
Change-Id: I130898a634c75bfecc68522820bc2a082a311f70
Issue-ID: APPC-1025
Signed-off-by: Taka Cho <tc012c@att.com>
-rw-r--r-- | CdtProxyService/pom.xml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/CdtProxyService/pom.xml b/CdtProxyService/pom.xml index e6ee3f4..15f7b92 100644 --- a/CdtProxyService/pom.xml +++ b/CdtProxyService/pom.xml @@ -86,10 +86,21 @@ <artifactId>jackson-annotations</artifactId> </dependency> <dependency> + <groupId>com.google.guava</groupId> + <artifactId>guava</artifactId> + <version>26.0-jre</version> + </dependency> + <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.9.2</version> <scope>compile</scope> + <exclusions> + <exclusion> + <groupId>com.google.guava</groupId> + <artifactId>guava</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>io.springfox</groupId> |