diff options
author | su622b <su622b@att.com> | 2020-03-31 18:43:15 -0400 |
---|---|---|
committer | su622b <su622b@att.com> | 2020-03-31 18:43:32 -0400 |
commit | 3016a2d6d1e814704f18f8992de49b8b571c051c (patch) | |
tree | 70b3a508f02c3c3d985d05fda2b36ec9a1690cc9 | |
parent | feeb6d1f3e2a9b074104345ae869129b2f4dcfd5 (diff) |
fix security vulnerabilities
Issue-ID: DMAAP-1418
Change-Id: I97d3f0acefa7d553c343c02b3fe6a93c3b0a5565
Signed-off-by: su622b <su622b@att.com>
-rw-r--r-- | pom.xml | 7 | ||||
-rw-r--r-- | version.properties | 2 |
2 files changed, 7 insertions, 2 deletions
@@ -15,7 +15,7 @@ <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId> <artifactId>dmaapClient</artifactId> <packaging>jar</packaging> - <version>1.1.10-SNAPSHOT</version> + <version>1.1.11-SNAPSHOT</version> <name>dmaap-messagerouter-dmaapclient</name> <description>Client library for MR event routing API</description> <url>https://gerrit.onap.org/r/gitweb?p=dmaap/messagerouter/dmaapclient.git</url> @@ -72,6 +72,11 @@ </developers> <dependencies> + <dependency> + <groupId>commons-codec</groupId> + <artifactId>commons-codec</artifactId> + <version>1.13</version> + </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> diff --git a/version.properties b/version.properties index 7ce0f80..8a7c886 100644 --- a/version.properties +++ b/version.properties @@ -27,7 +27,7 @@ major=1 minor=1 -patch=10 +patch=11 base_version=${major}.${minor}.${patch} |