|
@@ -11,7 +11,7 @@
|
|
|
|
|
|
<artifactId>kafka-ui-e2e-checks</artifactId>
|
|
|
<properties>
|
|
|
- <kafka-ui-contract>${project.version}</kafka-ui-contract>
|
|
|
+ <kafka-ui-contract>${project.version}</kafka-ui-contract>
|
|
|
<junit.version>5.7.0</junit.version>
|
|
|
<aspectj.version>1.9.6</aspectj.version>
|
|
|
<allure.version>2.13.7</allure.version>
|
|
@@ -31,6 +31,8 @@
|
|
|
<allure.screendiff-plugin.version>2.13.9</allure.screendiff-plugin.version>
|
|
|
<maven.surefire-plugin.version>2.22.2</maven.surefire-plugin.version>
|
|
|
<allure-maven.version>2.10.0</allure-maven.version>
|
|
|
+ <kafka.version>3.0.0</kafka.version>
|
|
|
+ <netty.version>4.1.69.Final</netty.version>
|
|
|
</properties>
|
|
|
|
|
|
<dependencies>
|
|
@@ -43,7 +45,87 @@
|
|
|
<groupId>org.apache.kafka</groupId>
|
|
|
<artifactId>kafka_2.13</artifactId>
|
|
|
<version>${kafka.version}</version>
|
|
|
+ <exclusions> <!-- could be removed when kafka version will contain zookeeper with netty 4.1.69 -->
|
|
|
+ <exclusion>
|
|
|
+ <groupId>io.netty</groupId>
|
|
|
+ <artifactId>netty-buffer</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>io.netty</groupId>
|
|
|
+ <artifactId>netty-common</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>io.netty</groupId>
|
|
|
+ <artifactId>netty-codec</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>io.netty</groupId>
|
|
|
+ <artifactId>netty-handler</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>io.netty</groupId>
|
|
|
+ <artifactId>netty-resolver</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>io.netty</groupId>
|
|
|
+ <artifactId>netty-transport</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>io.netty</groupId>
|
|
|
+ <artifactId>netty-transport-native-epoll</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>io.netty</groupId>
|
|
|
+ <artifactId>netty-transport-native-unix-common</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
</dependency>
|
|
|
+
|
|
|
+ <!--
|
|
|
+ whole netty dependency block could be removed
|
|
|
+ when kafka version will contain zookeeper with netty 4.1.69
|
|
|
+ -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.netty</groupId>
|
|
|
+ <artifactId>netty-buffer</artifactId>
|
|
|
+ <version>${netty.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.netty</groupId>
|
|
|
+ <artifactId>netty-common</artifactId>
|
|
|
+ <version>${netty.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.netty</groupId>
|
|
|
+ <artifactId>netty-codec</artifactId>
|
|
|
+ <version>${netty.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.netty</groupId>
|
|
|
+ <artifactId>netty-handler</artifactId>
|
|
|
+ <version>${netty.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.netty</groupId>
|
|
|
+ <artifactId>netty-resolver</artifactId>
|
|
|
+ <version>${netty.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.netty</groupId>
|
|
|
+ <artifactId>netty-transport</artifactId>
|
|
|
+ <version>${netty.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.netty</groupId>
|
|
|
+ <artifactId>netty-transport-native-epoll</artifactId>
|
|
|
+ <version>${netty.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.netty</groupId>
|
|
|
+ <artifactId>netty-transport-native-unix-common</artifactId>
|
|
|
+ <version>${netty.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
<dependency>
|
|
|
<groupId>org.testcontainers</groupId>
|
|
|
<artifactId>testcontainers</artifactId>
|