diff options
author | Sunil Unnava <su622b@att.com> | 2018-02-27 02:32:46 -0500 |
---|---|---|
committer | Sunil Unnava <su622b@att.com> | 2018-02-27 02:33:17 -0500 |
commit | 102790938e1d344121be0edda6f82b6f1d9530fb (patch) | |
tree | ae2c7419b343e8045cf6f55578f2425c11a083bb /datarouter-node/pom.xml | |
parent | 070b01cc6eb66cec5c8131b2f3d6f2d50879754f (diff) |
Security and licence issues fixes2.0.0-ONAPbeijing2.0.0-ONAP
Issue-ID: DMAAP-307
Change-Id: I8be70f2f303148e7d104617e446c4d53faf6a5ac
Signed-off-by: Sunil Unnava <su622b@att.com>
Diffstat (limited to 'datarouter-node/pom.xml')
-rw-r--r-- | datarouter-node/pom.xml | 27 |
1 files changed, 25 insertions, 2 deletions
diff --git a/datarouter-node/pom.xml b/datarouter-node/pom.xml index 1db177f2..f43fbd1c 100644 --- a/datarouter-node/pom.xml +++ b/datarouter-node/pom.xml @@ -26,7 +26,7 @@ <parent>
<groupId>org.onap.dmaap.datarouter</groupId>
<artifactId>parent</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
@@ -86,6 +86,23 @@ <artifactId>servlet-api</artifactId>
<version>2.5</version>
</dependency>
+ <dependency>
+ <groupId>com.thoughtworks.xstream</groupId>
+ <artifactId>xstream</artifactId>
+ <version>1.4.7</version>
+ </dependency>
+ <dependency>
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>logback-classic</artifactId>
+ <version>1.2.0</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>logback-core</artifactId>
+ <version>1.2.0</version>
+ <scope>compile</scope>
+ </dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
@@ -182,12 +199,18 @@ <dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
- <version>4.2.3</version>
+ <version>4.5.3</version>
</dependency>
<dependency>
<groupId>org.sonatype.http-testing-harness</groupId>
<artifactId>junit-runner</artifactId>
<version>0.11</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.databene</groupId>
+ <artifactId>contiperf</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
|