diff options
-rw-r--r-- | pom.xml | 2 | ||||
-rw-r--r-- | testsuites/integration/integration-uservice-test/pom.xml | 17 |
2 files changed, 18 insertions, 1 deletions
@@ -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.10.1-SNAPSHOT</version.policy.common> <version.policy.models>2.6.1-SNAPSHOT</version.policy.models> diff --git a/testsuites/integration/integration-uservice-test/pom.xml b/testsuites/integration/integration-uservice-test/pom.xml index 5b4152dec..d852ad1b5 100644 --- a/testsuites/integration/integration-uservice-test/pom.xml +++ b/testsuites/integration/integration-uservice-test/pom.xml @@ -173,6 +173,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> |