diff options
author | Michael Reece <michaere@amdocs.com> | 2018-09-17 20:06:37 +0100 |
---|---|---|
committer | Michael Reece <michaere@amdocs.com> | 2018-09-17 20:06:37 +0100 |
commit | aa6f9acfc15b8836bc4b50bd6bdfa1b06c49d321 (patch) | |
tree | 7687d0e84a3ea0050e71ed7ba4865e6a27c4948c /champ-lib | |
parent | 6ce2b6004e9c213331fc2337158b17dd9f1a5da3 (diff) |
Fix for NexusIQ security vunerabilities
Update and exclude dependencies causing security vunerabilities
Issue-ID: AAI-1614
Change-Id: I301c270f739e1fa97cb63794f5519bceb086f747
Signed-off-by: Michael Reece <michaere@amdocs.com>
Diffstat (limited to 'champ-lib')
-rw-r--r-- | champ-lib/champ-core/pom.xml | 25 | ||||
-rw-r--r-- | champ-lib/champ-titan/pom.xml | 8 |
2 files changed, 28 insertions, 5 deletions
diff --git a/champ-lib/champ-core/pom.xml b/champ-lib/champ-core/pom.xml index 4ce3d5f..38318b0 100644 --- a/champ-lib/champ-core/pom.xml +++ b/champ-lib/champ-core/pom.xml @@ -44,11 +44,6 @@ limitations under the License. <groupId>org.onap.aai.event-client</groupId> <artifactId>event-client-dmaap</artifactId> </dependency> - - <dependency> - <groupId>org.onap.aai.event-client</groupId> - <artifactId>event-client-kafka</artifactId> - </dependency> <!-- Event Bus Library - END --> <dependency> @@ -103,6 +98,26 @@ limitations under the License. <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </exclusion> + <exclusion> + <groupId>org.codehaus.jackson</groupId> + <artifactId>jackson-mapper-asl</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-yarn-common</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-mapreduce-client-core</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.commons</groupId> + <artifactId>commons-compress</artifactId> + </exclusion> + <exclusion> + <groupId>commons-httpclient</groupId> + <artifactId>commons-compress</artifactId> + </exclusion> </exclusions> </dependency> diff --git a/champ-lib/champ-titan/pom.xml b/champ-lib/champ-titan/pom.xml index 80ca481..e83ff7c 100644 --- a/champ-lib/champ-titan/pom.xml +++ b/champ-lib/champ-titan/pom.xml @@ -83,6 +83,14 @@ limitations under the License. <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> </exclusion> + <exclusion> + <groupId>org.codehaus.jackson</groupId> + <artifactId>jackson-mapper-asl</artifactId> + </exclusion> + <exclusion> + <groupId>org.mindrot</groupId> + <artifactId>jbcrypt</artifactId> + </exclusion> </exclusions> </dependency> |