diff options
author | Michael Arrastia <MArrasti@amdocs.com> | 2018-05-04 12:35:16 +0100 |
---|---|---|
committer | Michael Arrastia <MArrasti@amdocs.com> | 2018-05-04 12:35:16 +0100 |
commit | 7ac44deeadeca2a3f49643d2e5098deef1af8503 (patch) | |
tree | 542ce3a6525c98afc70aa1ba509d094523cbadf7 /champ-service | |
parent | 42480c241e5882bd2e6002004e5013a0e1bd7429 (diff) |
Address security vulnerabilities (fix 2)
Fixes previously missed dependencies:
- jackson-databind: version 2.8.11.1
- httpclient: version 4.5.3
- jackson-mapper: version 1.9.2
Change-Id: Iae2013bf164a90e910ec1d2cd4ad1185a01bacad
Issue-ID: AAI-1117
Signed-off-by: Michael Arrastia <MArrasti@amdocs.com>
Diffstat (limited to 'champ-service')
-rw-r--r-- | champ-service/pom.xml | 34 |
1 files changed, 12 insertions, 22 deletions
diff --git a/champ-service/pom.xml b/champ-service/pom.xml index 2738dc5..b5294e3 100644 --- a/champ-service/pom.xml +++ b/champ-service/pom.xml @@ -55,6 +55,18 @@ limitations under the License. <type>pom</type> <scope>import</scope> </dependency> + + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpclient</artifactId> + <version>4.5.3</version> + </dependency> + + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpclient-cache</artifactId> + <version>4.5.3</version> + </dependency> </dependencies> </dependencyManagement> @@ -201,28 +213,6 @@ limitations under the License. <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId> <artifactId>dmaapClient</artifactId> <version>1.1.5</version> - <exclusions> - <exclusion> - <groupId>org.apache.httpcomponents</groupId> - <artifactId>httpclient</artifactId> - </exclusion> - <exclusion> - <groupId>org.apache.httpcomponents</groupId> - <artifactId>httpclient-cache</artifactId> - </exclusion> - </exclusions> - </dependency> - - <dependency> - <groupId>org.apache.httpcomponents</groupId> - <artifactId>httpclient</artifactId> - <version>4.5.3</version> - </dependency> - - <dependency> - <groupId>org.apache.httpcomponents</groupId> - <artifactId>httpclient-cache</artifactId> - <version>4.5.3</version> </dependency> </dependencies> |