diff options
author | jitendra007 <jitendra.sharma1@huawei.com> | 2020-08-21 14:12:29 +0530 |
---|---|---|
committer | jitendra007 <jitendra.sharma1@huawei.com> | 2020-08-21 14:12:29 +0530 |
commit | 8cbf161905d50a97fd78f28fb14b08bbd75c3abe (patch) | |
tree | d4057b0832375060a7a55231c6bf5ef214763592 | |
parent | 42253e812eb43110c4b49f23d13246943bb8a458 (diff) |
Fix commons-codec vulnerability
Issue-ID: VNFSDK-584
Signed-off-by: jitendra007 <jitendra.sharma1@huawei.com>
Change-Id: I78c1bd06c040085419155ad7bb19c070f416715a
-rw-r--r-- | csarvalidation/pom.xml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/csarvalidation/pom.xml b/csarvalidation/pom.xml index 3c49658..12250c2 100644 --- a/csarvalidation/pom.xml +++ b/csarvalidation/pom.xml @@ -85,6 +85,17 @@ <groupId>org.onap.cli</groupId> <artifactId>cli-framework</artifactId> <version>5.0.3</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.14</version> </dependency> <dependency> |