diff options
author | Taka Cho <takamune.cho@att.com> | 2019-09-20 15:49:20 -0400 |
---|---|---|
committer | Patrick Brady <patrick.brady@att.com> | 2019-09-20 19:55:38 +0000 |
commit | e03cade7b2b72b407badb737da4c23759b3dd2c1 (patch) | |
tree | f8dcb28b657ff2e903fde7f9986ac2dd391fffe5 | |
parent | b88899a172f8e58ed4da07dafb1b1953aeafca19 (diff) |
upgrade commons-codec to 1.135.0.2-ONAPelalto
upgrade commons-codec from 1.11
to 1.13
Issue-ID: APPC-1742
Change-Id: Ifd000e4b36acb916fff08b78f9b2d73bb1e80b1e
Signed-off-by: Taka Cho <takamune.cho@att.com>
-rw-r--r-- | CdtProxyService/pom.xml | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/CdtProxyService/pom.xml b/CdtProxyService/pom.xml index 3ae6c24..0e62cf9 100644 --- a/CdtProxyService/pom.xml +++ b/CdtProxyService/pom.xml @@ -115,7 +115,18 @@ <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> - <version>4.5.3</version> + <version>4.5.10</version> + <exclusions> + <exclusion> + <groupId>commons-codec</groupId> + <artifactId>commons-codec</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>commons-codec</groupId> + <artifactId>commons-codec</artifactId> + <version>1.13</version> </dependency> </dependencies> <build> |