diff options
-rw-r--r-- | packages/apex-pdp-docker/src/main/docker/Dockerfile | 1 | ||||
-rw-r--r-- | pom.xml | 6 | ||||
-rw-r--r-- | testsuites/integration/integration-uservice-test/pom.xml | 21 |
3 files changed, 23 insertions, 5 deletions
diff --git a/packages/apex-pdp-docker/src/main/docker/Dockerfile b/packages/apex-pdp-docker/src/main/docker/Dockerfile index f1b02343f..0fee7d4b5 100644 --- a/packages/apex-pdp-docker/src/main/docker/Dockerfile +++ b/packages/apex-pdp-docker/src/main/docker/Dockerfile @@ -35,6 +35,7 @@ RUN apk add --no-cache \ vim \ iproute2 \ iputils \ + java-snappy-native \ && addgroup -S apexuser && adduser -S apexuser -G apexuser \ && mkdir -p $POLICY_HOME \ && mkdir -p $POLICY_LOGS \ @@ -3,7 +3,7 @@ Copyright (C) 2018 Ericsson. All rights reserved. Modifications Copyright (C) 2019-2020 Nordix Foundation. Modifications Copyright (C) 2019-2020 AT&T Intellectual Property. All rights reserved. - Modifications Copyright (C) 2020-2021 Bell Canada. + Modifications Copyright (C) 2020-2022 Bell Canada. ================================================================================ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -43,7 +43,7 @@ <encoding>UTF-8</encoding> <file.encoding>UTF-8</file.encoding> <version.commons-cli>1.4</version.commons-cli> - <version.kafka>2.3.0</version.kafka> + <version.kafka>3.0.0</version.kafka> <version.hibernate>5.3.7.Final</version.hibernate> <version.policy.common>1.8.3-SNAPSHOT</version.policy.common> <version.policy.models>2.4.6-SNAPSHOT</version.policy.models> @@ -129,7 +129,7 @@ <profiles> <profile> - <!--This profile is used to store Eclipse m2e settings only. It has no + <!--This profile is used to store Eclipse m2e settings only. It has no influence on the Maven build itself. --> <id>only-eclipse</id> <activation> diff --git a/testsuites/integration/integration-uservice-test/pom.xml b/testsuites/integration/integration-uservice-test/pom.xml index ff53e65e7..0f0d624c2 100644 --- a/testsuites/integration/integration-uservice-test/pom.xml +++ b/testsuites/integration/integration-uservice-test/pom.xml @@ -2,7 +2,7 @@ ============LICENSE_START======================================================= Copyright (C) 2018 Ericsson. All rights reserved. Modifications Copyright (C) 2019-2020 Nordix Foundation. - Modifications Copyright (C) 2020 Bell Canada. + Modifications Copyright (C) 2020, 2022 Bell Canada. Modifications Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved. ================================================================================ Licensed under the Apache License, Version 2.0 (the "License"); @@ -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 --> @@ -169,6 +169,23 @@ </exclusion> </exclusions> </dependency> + <dependency> + <groupId>org.apache.zookeeper</groupId> + <artifactId>zookeeper</artifactId> + <version>3.7.0</version> + <scope>test</scope> + <exclusions> + <!-- The default netty version in kafka-junit4 has vulnerabilities --> + <exclusion> + <groupId>io.netty</groupId> + <artifactId>*</artifactId> + </exclusion> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> + </exclusion> + </exclusions> + </dependency> <!-- This netty version fixes the vulnerabilities --> <dependency> <groupId>io.netty</groupId> |