123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <artifactId>kafka-ui</artifactId>
- <groupId>com.provectus</groupId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>kafka-ui-e2e-checks</artifactId>
- <properties>
- <kafka-ui-contract>${project.version}</kafka-ui-contract>
- <aspectj.version>1.9.8</aspectj.version>
- <allure.version>2.18.1</allure.version>
- <json-smart.version>2.4.8</json-smart.version>
- <selenide.version>6.6.3</selenide.version>
- <assertj.version>3.23.1</assertj.version>
- <google.auto-service.version>1.0.1</google.auto-service.version>
- <hamcrest.version>2.2</hamcrest.version>
- <slf4j.version>1.7.36</slf4j.version>
- <allure.java-commons.version>2.18.1</allure.java-commons.version>
- <dotenv.version>2.2.4</dotenv.version>
- <allure.maven-plugin.version>2.6</allure.maven-plugin.version>
- <ashot.version>1.5.4</ashot.version>
- <allure.screendiff-plugin.version>2.18.1</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.3.1</kafka.version>
- <qase.io.version>2.1.3</qase.io.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>net.minidev</groupId>
- <artifactId>json-smart</artifactId>
- <version>${json-smart.version}</version>
- </dependency>
- <dependency>
- <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>
- </dependency>
- <dependency>
- <groupId>io.netty</groupId>
- <artifactId>netty-common</artifactId>
- </dependency>
- <dependency>
- <groupId>io.netty</groupId>
- <artifactId>netty-codec</artifactId>
- </dependency>
- <dependency>
- <groupId>io.netty</groupId>
- <artifactId>netty-handler</artifactId>
- </dependency>
- <dependency>
- <groupId>io.netty</groupId>
- <artifactId>netty-resolver</artifactId>
- </dependency>
- <dependency>
- <groupId>io.netty</groupId>
- <artifactId>netty-transport</artifactId>
- </dependency>
- <dependency>
- <groupId>io.netty</groupId>
- <artifactId>netty-transport-native-epoll</artifactId>
- </dependency>
- <dependency>
- <groupId>io.netty</groupId>
- <artifactId>netty-transport-native-unix-common</artifactId>
- </dependency>
- <dependency>
- <groupId>io.netty</groupId>
- <artifactId>netty-resolver-dns-native-macos</artifactId>
- <classifier>osx-aarch_64</classifier>
- </dependency>
- <dependency>
- <groupId>org.testcontainers</groupId>
- <artifactId>testcontainers</artifactId>
- </dependency>
- <dependency>
- <groupId>io.qameta.allure</groupId>
- <artifactId>allure-junit5</artifactId>
- <version>${allure.version}</version>
- </dependency>
- <dependency>
- <groupId>com.codeborne</groupId>
- <artifactId>selenide</artifactId>
- <version>${selenide.version}</version>
- </dependency>
- <dependency>
- <groupId>io.qameta.allure</groupId>
- <artifactId>allure-selenide</artifactId>
- <version>${allure.version}</version>
- </dependency>
- <dependency>
- <groupId>org.hamcrest</groupId>
- <artifactId>hamcrest</artifactId>
- <version>${hamcrest.version}</version>
- </dependency>
- <dependency>
- <groupId>org.assertj</groupId>
- <artifactId>assertj-core</artifactId>
- <version>${assertj.version}</version>
- </dependency>
- <dependency>
- <groupId>com.google.auto.service</groupId>
- <artifactId>auto-service</artifactId>
- <version>${google.auto-service.version}</version>
- </dependency>
- <dependency>
- <groupId>org.junit.jupiter</groupId>
- <artifactId>junit-jupiter-api</artifactId>
- <version>${junit.version}</version>
- </dependency>
- <dependency>
- <groupId>org.junit.jupiter</groupId>
- <artifactId>junit-jupiter-engine</artifactId>
- <version>${junit.version}</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-simple</artifactId>
- <version>${slf4j.version}</version>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>${org.projectlombok.version}</version>
- </dependency>
- <dependency>
- <groupId>org.aspectj</groupId>
- <artifactId>aspectjrt</artifactId>
- <version>${aspectj.version}</version>
- </dependency>
- <dependency>
- <groupId>org.testcontainers</groupId>
- <artifactId>junit-jupiter</artifactId>
- </dependency>
- <dependency>
- <groupId>io.qameta.allure</groupId>
- <artifactId>allure-java-commons</artifactId>
- <version>${allure.java-commons.version}</version>
- </dependency>
- <dependency>
- <groupId>io.github.cdimascio</groupId>
- <artifactId>dotenv-java</artifactId>
- <version>${dotenv.version}</version>
- </dependency>
- <dependency>
- <groupId>org.junit.platform</groupId>
- <artifactId>junit-platform-launcher</artifactId>
- </dependency>
- <dependency>
- <groupId>ru.yandex.qatools.allure</groupId>
- <artifactId>allure-maven-plugin</artifactId>
- <version>${allure.maven-plugin.version}</version>
- </dependency>
- <dependency>
- <groupId>ru.yandex.qatools.ashot</groupId>
- <artifactId>ashot</artifactId>
- <version>${ashot.version}</version>
- <exclusions>
- <exclusion>
- <groupId>org.seleniumhq.selenium</groupId>
- <artifactId>selenium-remote-driver</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>io.qameta.allure.plugins</groupId>
- <artifactId>screen-diff-plugin</artifactId>
- <version>${allure.screendiff-plugin.version}</version>
- </dependency>
- <dependency>
- <groupId>com.provectus</groupId>
- <artifactId>kafka-ui-contract</artifactId>
- <version>${kafka-ui-contract}</version>
- </dependency>
- <dependency>
- <groupId>org.testcontainers</groupId>
- <artifactId>selenium</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>io.qase</groupId>
- <artifactId>qase-api</artifactId>
- <version>${qase.io.version}</version>
- </dependency>
- </dependencies>
- <profiles>
- <profile>
- <id>local</id>
- <!-- Disabling e2e tests by default (for local dev envs) since complex setup is needed for UI tests -->
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <skipTests>true</skipTests>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </profile>
- <profile>
- <id>prod</id>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <version>${maven.surefire-plugin.version}</version>
- <configuration>
- <testFailureIgnore>false</testFailureIgnore>
- <systemProperties>
- <property>
- <name>junit.jupiter.extensions.autodetection.enabled</name>
- <value>true</value>
- </property>
- </systemProperties>
- <argLine>
- -javaagent:"${settings.localRepository}/org/aspectj/aspectjweaver/${aspectj.version}/aspectjweaver-${aspectj.version}.jar"
- </argLine>
- </configuration>
- <dependencies>
- <dependency>
- <groupId>org.aspectj</groupId>
- <artifactId>aspectjweaver</artifactId>
- <version>${aspectj.version}</version>
- </dependency>
- </dependencies>
- </plugin>
- <plugin>
- <groupId>io.qameta.allure</groupId>
- <artifactId>allure-maven</artifactId>
- <version>${allure-maven.version}</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
- </project>
|