aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorliamfallon <liam.fallon@est.tech>2022-01-06 14:37:41 +0000
committerliamfallon <liam.fallon@est.tech>2022-01-06 14:37:46 +0000
commit0b7e14ab321c2da333f45e1a4f244de20ffe21ff (patch)
treee71c1fd4bd28cac096399717c4da9c63f5d6352c
parent521b2347ae365e69ccbcda211a4881747c3b76d6 (diff)
Exclude log4j test dependency
There is a transitive test dependency in apex-pdp on log4j, doesn't show up in the CLM reports (because it is a test dependency). Removing the dependency. Issue-ID: POLICY-3862 Change-Id: Ia48e4d844a5a4ce8a207dab38ea220f1c7a543d2 Signed-off-by: liamfallon <liam.fallon@est.tech>
-rw-r--r--testsuites/integration/integration-uservice-test/pom.xml10
1 files changed, 7 insertions, 3 deletions
diff --git a/testsuites/integration/integration-uservice-test/pom.xml b/testsuites/integration/integration-uservice-test/pom.xml
index 59d9068c9..5b4152dec 100644
--- a/testsuites/integration/integration-uservice-test/pom.xml
+++ b/testsuites/integration/integration-uservice-test/pom.xml
@@ -1,7 +1,7 @@
<!--
============LICENSE_START=======================================================
Copyright (C) 2018 Ericsson. All rights reserved.
- Modifications Copyright (C) 2019-2020 Nordix Foundation.
+ Modifications Copyright (C) 2019-2020,2022 Nordix Foundation.
Modifications Copyright (C) 2020 Bell Canada.
Modifications Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved.
================================================================================
@@ -27,7 +27,7 @@
<parent>
<groupId>org.onap.policy.apex-pdp.testsuites.integration</groupId>
<artifactId>apex-integration</artifactId>
- <version>2.6.2-SNAPSHOT</version>
+ <version>2.7.1-SNAPSHOT</version>
</parent>
<artifactId>integration-uservice-test</artifactId>
@@ -159,7 +159,7 @@
<dependency>
<groupId>com.salesforce.kafka.test</groupId>
<artifactId>kafka-junit4</artifactId>
- <version>3.2.1</version>
+ <version>3.2.3</version>
<scope>test</scope>
<exclusions>
<!-- The default netty version in kafka-junit4 has vulnerabilities -->
@@ -167,6 +167,10 @@
<groupId>io.netty</groupId>
<artifactId>*</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ </exclusion>
</exclusions>
</dependency>
<!-- This netty version fixes the vulnerabilities -->