|
6 | 6 |
|
7 | 7 | <groupId>com.anhtester</groupId> |
8 | 8 | <artifactId>PlaywrightJava</artifactId> |
9 | | - <version>1.45.0</version> |
| 9 | + <version>1.48.0</version> |
10 | 10 |
|
11 | 11 | <properties> |
12 | 12 | <maven.compiler.source>17</maven.compiler.source> |
13 | 13 | <maven.compiler.target>17</maven.compiler.target> |
14 | 14 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 15 | + |
| 16 | + <log4j.version>2.24.1</log4j.version> |
| 17 | + <slf4j.version>2.0.16</slf4j.version> |
15 | 18 | </properties> |
16 | 19 |
|
17 | 20 | <dependencies> |
18 | 21 | <!-- https://mvnrepository.com/artifact/com.microsoft.playwright/playwright --> |
19 | 22 | <dependency> |
20 | 23 | <groupId>com.microsoft.playwright</groupId> |
21 | 24 | <artifactId>playwright</artifactId> |
22 | | - <version>1.45.0</version> |
| 25 | + <version>1.48.0</version> |
23 | 26 | </dependency> |
24 | 27 |
|
25 | 28 | <!-- https://mvnrepository.com/artifact/org.testng/testng --> |
|
33 | 36 | <dependency> |
34 | 37 | <groupId>org.slf4j</groupId> |
35 | 38 | <artifactId>slf4j-api</artifactId> |
36 | | - <version>2.0.13</version> |
| 39 | + <version>${slf4j.version}</version> |
37 | 40 | </dependency> |
38 | 41 |
|
39 | 42 | <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-simple --> |
40 | 43 | <dependency> |
41 | 44 | <groupId>org.slf4j</groupId> |
42 | 45 | <artifactId>slf4j-simple</artifactId> |
43 | | - <version>2.0.13</version> |
| 46 | + <version>${slf4j.version}</version> |
44 | 47 | </dependency> |
45 | 48 |
|
46 | 49 | <!-- https://mvnrepository.com/artifact/org.apache.poi/poi --> |
|
61 | 64 | <dependency> |
62 | 65 | <groupId>commons-io</groupId> |
63 | 66 | <artifactId>commons-io</artifactId> |
64 | | - <version>2.16.1</version> |
| 67 | + <version>2.17.0</version> |
65 | 68 | </dependency> |
66 | 69 |
|
67 | 70 | <!-- https://mvnrepository.com/artifact/com.github.stephenc.monte/monte-screen-recorder --> |
|
75 | 78 | <dependency> |
76 | 79 | <groupId>org.apache.logging.log4j</groupId> |
77 | 80 | <artifactId>log4j-core</artifactId> |
78 | | - <version>2.23.1</version> |
| 81 | + <version>${log4j.version}</version> |
79 | 82 | </dependency> |
80 | 83 |
|
81 | 84 | <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-api --> |
82 | 85 | <dependency> |
83 | 86 | <groupId>org.apache.logging.log4j</groupId> |
84 | 87 | <artifactId>log4j-api</artifactId> |
85 | | - <version>2.23.1</version> |
| 88 | + <version>${log4j.version}</version> |
86 | 89 | </dependency> |
87 | 90 |
|
88 | 91 | <!-- https://mvnrepository.com/artifact/com.aventstack/extentreports --> |
|
96 | 99 | <dependency> |
97 | 100 | <groupId>io.qameta.allure</groupId> |
98 | 101 | <artifactId>allure-testng</artifactId> |
99 | | - <version>2.28.0</version> |
| 102 | + <version>2.29.0</version> |
100 | 103 | </dependency> |
101 | 104 |
|
102 | 105 | <!-- https://mvnrepository.com/artifact/io.qameta.allure/allure-attachments --> |
103 | 106 | <dependency> |
104 | 107 | <groupId>io.qameta.allure</groupId> |
105 | 108 | <artifactId>allure-attachments</artifactId> |
106 | | - <version>2.28.0</version> |
| 109 | + <version>2.29.0</version> |
107 | 110 | </dependency> |
108 | 111 |
|
109 | 112 | <!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver --> |
|
125 | 128 | <dependency> |
126 | 129 | <groupId>com.google.guava</groupId> |
127 | 130 | <artifactId>guava</artifactId> |
128 | | - <version>33.2.1-jre</version> |
| 131 | + <version>33.3.1-jre</version> |
129 | 132 | </dependency> |
130 | 133 |
|
131 | 134 | </dependencies> |
|
0 commit comments