|
6 | 6 |
|
7 | 7 | <groupId>com.anhtester</groupId> |
8 | 8 | <artifactId>anhtester-cucumber-testng</artifactId> |
9 | | - <version>1.7.9</version> |
| 9 | + <version>1.8.0</version> |
10 | 10 | <name>TestAutomationFrameworkCucumberTestNG</name> |
11 | 11 | <url>https://github.com/anhtester/AutomationFrameworkCucumberTestNG</url> |
12 | 12 |
|
|
15 | 15 | <project.build.resourceEncoding>UTF-8</project.build.resourceEncoding> |
16 | 16 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
17 | 17 | <java-compiler.version>17</java-compiler.version> |
18 | | - <maven-surefire-plugin.version>3.3.1</maven-surefire-plugin.version> |
| 18 | + <maven-surefire-plugin.version>3.5.0</maven-surefire-plugin.version> |
19 | 19 | <maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version> |
20 | 20 |
|
21 | 21 | <cucumber.java.version>7.18.1</cucumber.java.version> |
22 | | - <gherkin.version>28.0.0</gherkin.version> |
23 | | - <cucumber-reporting.version>5.8.1</cucumber-reporting.version> |
24 | | - <selenium.version>4.23.0</selenium.version> |
| 22 | + <gherkin.version>29.0.0</gherkin.version> |
| 23 | + <cucumber-reporting.version>5.8.2</cucumber-reporting.version> |
| 24 | + <selenium.version>4.24.0</selenium.version> |
25 | 25 | <testng.version>7.10.2</testng.version> |
26 | 26 | <aspectjweaver.version>1.9.22.1</aspectjweaver.version> |
27 | 27 | <log4j.version>2.23.1</log4j.version> |
28 | | - <allure-testng.version>2.28.0</allure-testng.version> |
29 | | - <allure-maven.version>2.12.0</allure-maven.version> |
| 28 | + <slf4j.version>2.0.16</slf4j.version> |
| 29 | + <allure-testng.version>2.29.0</allure-testng.version> |
| 30 | + <allure-maven.version>2.14.0</allure-maven.version> |
30 | 31 | <allure-environment-writer.version>1.0.0</allure-environment-writer.version> |
31 | 32 | <allure.cmd.download.url> |
32 | 33 | https://repo.maven.apache.org/maven2/io/qameta/allure/allure-commandline |
|
41 | 42 | <mysql-connector-java.version>8.0.33</mysql-connector-java.version> |
42 | 43 | <google.zxing.version>3.5.3</google.zxing.version> |
43 | 44 | <lombok.version>1.18.34</lombok.version> |
44 | | - <google.guava.version>33.2.1-jre</google.guava.version> |
| 45 | + <google.guava.version>33.3.0-jre</google.guava.version> |
45 | 46 | <data.supplier.version>1.9.7</data.supplier.version> |
46 | 47 | <javax.mail.version>1.6.2</javax.mail.version> |
47 | 48 | <zip.version>1.17</zip.version> |
48 | | - <jackson.version>2.17.2</jackson.version> |
| 49 | + <rest-assured.version>5.5.0</rest-assured.version> |
| 50 | + <gson.version>2.11.0</gson.version> |
| 51 | + <jackson-databind.version>2.17.2</jackson-databind.version> |
49 | 52 | <datafaker.version>2.3.1</datafaker.version> |
50 | | - <telegram.bot.version>7.7.0</telegram.bot.version> |
51 | | - <slf4j.version>2.0.13</slf4j.version> |
52 | | - <commons-lang3.version>3.15.0</commons-lang3.version> |
| 53 | + <telegram.bot.version>7.9.1</telegram.bot.version> |
| 54 | + <commons-lang3.version>3.17.0</commons-lang3.version> |
53 | 55 | <extentreports-cucumber7-adapter.version>1.14.0</extentreports-cucumber7-adapter.version> |
54 | 56 | <mysql-connector-j.version>9.0.0</mysql-connector-j.version> |
55 | 57 |
|
|
60 | 62 |
|
61 | 63 | <dependencies> |
62 | 64 |
|
| 65 | + <!-- https://mvnrepository.com/artifact/io.rest-assured/rest-assured --> |
| 66 | + <dependency> |
| 67 | + <groupId>io.rest-assured</groupId> |
| 68 | + <artifactId>rest-assured</artifactId> |
| 69 | + <version>${rest-assured.version}</version> |
| 70 | + </dependency> |
| 71 | + <!-- https://mvnrepository.com/artifact/io.rest-assured/json-schema-validator --> |
| 72 | + <dependency> |
| 73 | + <groupId>io.rest-assured</groupId> |
| 74 | + <artifactId>json-schema-validator</artifactId> |
| 75 | + <version>${rest-assured.version}</version> |
| 76 | + </dependency> |
| 77 | + <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson --> |
| 78 | + <dependency> |
| 79 | + <groupId>com.google.code.gson</groupId> |
| 80 | + <artifactId>gson</artifactId> |
| 81 | + <version>${gson.version}</version> |
| 82 | + </dependency> |
| 83 | + |
| 84 | + <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind --> |
| 85 | + <dependency> |
| 86 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 87 | + <artifactId>jackson-databind</artifactId> |
| 88 | + <version>${jackson-databind.version}</version> |
| 89 | + </dependency> |
| 90 | + |
| 91 | + <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core --> |
| 92 | + <dependency> |
| 93 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 94 | + <artifactId>jackson-core</artifactId> |
| 95 | + <version>${jackson-databind.version}</version> |
| 96 | + </dependency> |
| 97 | + |
63 | 98 | <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 --> |
64 | 99 | <dependency> |
65 | 100 | <groupId>org.apache.commons</groupId> |
|
150 | 185 | <version>${testng.version}</version> |
151 | 186 | </dependency> |
152 | 187 |
|
153 | | - <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind --> |
154 | | - <dependency> |
155 | | - <groupId>com.fasterxml.jackson.core</groupId> |
156 | | - <artifactId>jackson-databind</artifactId> |
157 | | - <version>${jackson.version}</version> |
158 | | - </dependency> |
159 | | - |
160 | | - <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core --> |
161 | | - <dependency> |
162 | | - <groupId>com.fasterxml.jackson.core</groupId> |
163 | | - <artifactId>jackson-core</artifactId> |
164 | | - <version>${jackson.version}</version> |
165 | | - </dependency> |
166 | | - |
167 | 188 | <!--https://mvnrepository.com/artifact/com.sun.mail/javax.mail/ --> |
168 | 189 | <dependency> |
169 | 190 | <groupId>com.sun.mail</groupId> |
|
0 commit comments