|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | + <parent> |
| 6 | + <artifactId>kafka-ui</artifactId> |
| 7 | + <groupId>com.provectus</groupId> |
| 8 | + <version>0.0.11-SNAPSHOT</version> |
| 9 | + </parent> |
| 10 | + <modelVersion>4.0.0</modelVersion> |
| 11 | + |
| 12 | + <artifactId>kafka-ui-e2e-checks</artifactId> |
| 13 | + <properties> |
| 14 | + <junit.version>5.7.0</junit.version> |
| 15 | + <aspectj.version>1.9.6</aspectj.version> |
| 16 | + <allure.version>2.13.7</allure.version> |
| 17 | + <testcontainers.version>1.15.2</testcontainers.version> |
| 18 | + <selenide.version>5.16.2</selenide.version> |
| 19 | + <assertj.version>3.17.1</assertj.version> |
| 20 | + <google.auto-service.version>1.0-rc7</google.auto-service.version> |
| 21 | + <hamcrest.version>2.2</hamcrest.version> |
| 22 | + <slf4j.version>1.7.29</slf4j.version> |
| 23 | + <testcontainers.junit-jupiter.version>1.15.1</testcontainers.junit-jupiter.version> |
| 24 | + <allure.java-commons.version>2.13.6</allure.java-commons.version> |
| 25 | + <dotenv.version>2.2.0</dotenv.version> |
| 26 | + <junit.platform-launcher.version>1.6.2</junit.platform-launcher.version> |
| 27 | + <allure.maven-plugin.version>2.6</allure.maven-plugin.version> |
| 28 | + <ashot.version>1.5.4</ashot.version> |
| 29 | + <allure.screendiff-plugin.version>2.13.9</allure.screendiff-plugin.version> |
| 30 | + <maven.surefire-plugin.version>2.22.2</maven.surefire-plugin.version> |
| 31 | + <allure-maven.version>2.10.0</allure-maven.version> |
| 32 | + </properties> |
| 33 | + |
| 34 | + <dependencies> |
| 35 | + <dependency> |
| 36 | + <groupId>org.apache.kafka</groupId> |
| 37 | + <artifactId>kafka_2.13</artifactId> |
| 38 | + <version>${kafka.version}</version> |
| 39 | + </dependency> |
| 40 | + <dependency> |
| 41 | + <groupId>org.testcontainers</groupId> |
| 42 | + <artifactId>testcontainers</artifactId> |
| 43 | + <version>${testcontainers.version}</version> |
| 44 | + </dependency> |
| 45 | + |
| 46 | + <dependency> |
| 47 | + <groupId>io.qameta.allure</groupId> |
| 48 | + <artifactId>allure-junit5</artifactId> |
| 49 | + <version>${allure.version}</version> |
| 50 | + </dependency> |
| 51 | + <dependency> |
| 52 | + <groupId>com.codeborne</groupId> |
| 53 | + <artifactId>selenide</artifactId> |
| 54 | + <version>${selenide.version}</version> |
| 55 | + </dependency> |
| 56 | + <dependency> |
| 57 | + <groupId>io.qameta.allure</groupId> |
| 58 | + <artifactId>allure-selenide</artifactId> |
| 59 | + <version>${allure.version}</version> |
| 60 | + </dependency> |
| 61 | + <dependency> |
| 62 | + <groupId>org.hamcrest</groupId> |
| 63 | + <artifactId>hamcrest</artifactId> |
| 64 | + <version>${hamcrest.version}</version> |
| 65 | + </dependency> |
| 66 | + <dependency> |
| 67 | + <groupId>org.assertj</groupId> |
| 68 | + <artifactId>assertj-core</artifactId> |
| 69 | + <version>${assertj.version}</version> |
| 70 | + </dependency> |
| 71 | + <dependency> |
| 72 | + <groupId>com.google.auto.service</groupId> |
| 73 | + <artifactId>auto-service</artifactId> |
| 74 | + <version>${google.auto-service.version}</version> |
| 75 | + </dependency> |
| 76 | + <dependency> |
| 77 | + <groupId>org.junit.jupiter</groupId> |
| 78 | + <artifactId>junit-jupiter-api</artifactId> |
| 79 | + <version>${junit.version}</version> |
| 80 | + </dependency> |
| 81 | + <dependency> |
| 82 | + <groupId>org.junit.jupiter</groupId> |
| 83 | + <artifactId>junit-jupiter-engine</artifactId> |
| 84 | + <version>${junit.version}</version> |
| 85 | + <scope>test</scope> |
| 86 | + </dependency> |
| 87 | + <dependency> |
| 88 | + <groupId>org.slf4j</groupId> |
| 89 | + <artifactId>slf4j-simple</artifactId> |
| 90 | + <version>${slf4j.version}</version> |
| 91 | + </dependency> |
| 92 | + <dependency> |
| 93 | + <groupId>org.projectlombok</groupId> |
| 94 | + <artifactId>lombok</artifactId> |
| 95 | + <version>${org.projectlombok.version}</version> |
| 96 | + </dependency> |
| 97 | + <dependency> |
| 98 | + <groupId>org.aspectj</groupId> |
| 99 | + <artifactId>aspectjrt</artifactId> |
| 100 | + <version>${aspectj.version}</version> |
| 101 | + </dependency> |
| 102 | + |
| 103 | + <dependency> |
| 104 | + <groupId>org.testcontainers</groupId> |
| 105 | + <artifactId>junit-jupiter</artifactId> |
| 106 | + <version>${testcontainers.junit-jupiter.version}</version> |
| 107 | + </dependency> |
| 108 | + <dependency> |
| 109 | + <groupId>io.qameta.allure</groupId> |
| 110 | + <artifactId>allure-java-commons</artifactId> |
| 111 | + <version>${allure.java-commons.version}</version> |
| 112 | + </dependency> |
| 113 | + <dependency> |
| 114 | + <groupId>io.github.cdimascio</groupId> |
| 115 | + <artifactId>dotenv-java</artifactId> |
| 116 | + <version>${dotenv.version}</version> |
| 117 | + </dependency> |
| 118 | + <dependency> |
| 119 | + <groupId>org.junit.platform</groupId> |
| 120 | + <artifactId>junit-platform-launcher</artifactId> |
| 121 | + <version>${junit.platform-launcher.version}</version> |
| 122 | + </dependency> |
| 123 | + <dependency> |
| 124 | + <groupId>ru.yandex.qatools.allure</groupId> |
| 125 | + <artifactId>allure-maven-plugin</artifactId> |
| 126 | + <version>${allure.maven-plugin.version}</version> |
| 127 | + </dependency> |
| 128 | + <dependency> |
| 129 | + <groupId>ru.yandex.qatools.ashot</groupId> |
| 130 | + <artifactId>ashot</artifactId> |
| 131 | + <version>${ashot.version}</version> |
| 132 | + <exclusions> |
| 133 | + <exclusion> |
| 134 | + <groupId>org.seleniumhq.selenium</groupId> |
| 135 | + <artifactId>selenium-remote-driver</artifactId> |
| 136 | + </exclusion> |
| 137 | + </exclusions> |
| 138 | + </dependency> |
| 139 | + <dependency> |
| 140 | + <groupId>io.qameta.allure.plugins</groupId> |
| 141 | + <artifactId>screen-diff-plugin</artifactId> |
| 142 | + <version>${allure.screendiff-plugin.version}</version> |
| 143 | + </dependency> |
| 144 | + </dependencies> |
| 145 | + <build> |
| 146 | + <plugins> |
| 147 | + <plugin> |
| 148 | + <groupId>org.apache.maven.plugins</groupId> |
| 149 | + <artifactId>maven-surefire-plugin</artifactId> |
| 150 | + <version>${maven.surefire-plugin.version}</version> |
| 151 | + <configuration> |
| 152 | + <argLine> |
| 153 | + -javaagent:"${settings.localRepository}/org/aspectj/aspectjweaver/${aspectj.version}/aspectjweaver-${aspectj.version}.jar" |
| 154 | + </argLine> |
| 155 | + </configuration> |
| 156 | + <dependencies> |
| 157 | + <dependency> |
| 158 | + <groupId>org.aspectj</groupId> |
| 159 | + <artifactId>aspectjweaver</artifactId> |
| 160 | + <version>${aspectj.version}</version> |
| 161 | + </dependency> |
| 162 | + </dependencies> |
| 163 | + |
| 164 | + </plugin> |
| 165 | + <plugin> |
| 166 | + <groupId>io.qameta.allure</groupId> |
| 167 | + <artifactId>allure-maven</artifactId> |
| 168 | + <version>${allure-maven.version}</version> |
| 169 | + </plugin> |
| 170 | + |
| 171 | + <plugin> |
| 172 | + <groupId>org.apache.maven.plugins</groupId> |
| 173 | + <artifactId>maven-compiler-plugin</artifactId> |
| 174 | + <configuration> |
| 175 | + <source>${maven.compiler.source}</source> |
| 176 | + <target>${maven.compiler.target}</target> |
| 177 | + </configuration> |
| 178 | + </plugin> |
| 179 | + </plugins> |
| 180 | + </build> |
| 181 | +</project> |
0 commit comments