|
4 | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | 6 |
|
7 | | - <groupId>anhtester.com</groupId> |
| 7 | + <groupId>com.anhtester</groupId> |
8 | 8 | <artifactId>PlaywrightJava</artifactId> |
9 | | - <version>1.0.0</version> |
| 9 | + <version>1.41.1</version> |
10 | 10 |
|
11 | 11 | <properties> |
12 | 12 | <maven.compiler.source>17</maven.compiler.source> |
|
19 | 19 | <dependency> |
20 | 20 | <groupId>com.microsoft.playwright</groupId> |
21 | 21 | <artifactId>playwright</artifactId> |
22 | | - <version>1.40.0</version> |
| 22 | + <version>1.41.1</version> |
23 | 23 | </dependency> |
24 | 24 |
|
25 | 25 | <!-- https://mvnrepository.com/artifact/org.testng/testng --> |
26 | 26 | <dependency> |
27 | 27 | <groupId>org.testng</groupId> |
28 | 28 | <artifactId>testng</artifactId> |
29 | | - <version>7.8.0</version> |
| 29 | + <version>7.9.0</version> |
30 | 30 | </dependency> |
31 | 31 |
|
32 | 32 | <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api --> |
33 | 33 | <dependency> |
34 | 34 | <groupId>org.slf4j</groupId> |
35 | 35 | <artifactId>slf4j-api</artifactId> |
36 | | - <version>2.0.9</version> |
37 | | - <scope>test</scope> |
| 36 | + <version>2.0.11</version> |
38 | 37 | </dependency> |
39 | 38 |
|
40 | 39 | <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-simple --> |
41 | 40 | <dependency> |
42 | 41 | <groupId>org.slf4j</groupId> |
43 | 42 | <artifactId>slf4j-simple</artifactId> |
44 | | - <version>2.0.9</version> |
45 | | - <scope>test</scope> |
| 43 | + <version>2.0.11</version> |
46 | 44 | </dependency> |
47 | 45 |
|
48 | 46 | <!-- https://mvnrepository.com/artifact/org.apache.poi/poi --> |
|
77 | 75 | <dependency> |
78 | 76 | <groupId>org.apache.logging.log4j</groupId> |
79 | 77 | <artifactId>log4j-core</artifactId> |
80 | | - <version>2.22.0</version> |
| 78 | + <version>3.0.0-beta1</version> |
81 | 79 | </dependency> |
82 | 80 |
|
83 | 81 | <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-api --> |
84 | 82 | <dependency> |
85 | 83 | <groupId>org.apache.logging.log4j</groupId> |
86 | 84 | <artifactId>log4j-api</artifactId> |
87 | | - <version>2.22.0</version> |
| 85 | + <version>3.0.0-beta1</version> |
88 | 86 | </dependency> |
89 | 87 |
|
90 | 88 | <!-- https://mvnrepository.com/artifact/com.aventstack/extentreports --> |
|
137 | 135 | <plugin> |
138 | 136 | <groupId>org.apache.maven.plugins</groupId> |
139 | 137 | <artifactId>maven-compiler-plugin</artifactId> |
140 | | - <version>3.12.0</version> |
| 138 | + <version>3.12.1</version> |
141 | 139 | </plugin> |
142 | 140 |
|
143 | 141 | <plugin> |
144 | 142 | <groupId>org.apache.maven.plugins</groupId> |
145 | 143 | <artifactId>maven-surefire-plugin</artifactId> |
146 | | - <version>3.2.3</version> |
| 144 | + <version>3.2.5</version> |
147 | 145 | <configuration> |
148 | 146 | <suiteXmlFiles> |
149 | | - <suiteXmlFile>suites/CategoryTest.xml</suiteXmlFile> |
| 147 | + <suiteXmlFile>suites/SuiteAll.xml</suiteXmlFile> |
150 | 148 | </suiteXmlFiles> |
151 | 149 |
|
152 | 150 | <argLine> |
153 | 151 | -javaagent:"${settings.localRepository}/org/aspectj/aspectjweaver/1.9.21/aspectjweaver-1.9.21.jar" |
154 | 152 | </argLine> |
155 | 153 | <testFailureIgnore>true</testFailureIgnore> |
156 | 154 | <systemPropertyVariables> |
157 | | - <!--Đường dẫn xuất ra report--> |
158 | 155 | <allure.results.directory>target/allure-results</allure.results.directory> |
159 | 156 | </systemPropertyVariables> |
160 | 157 | </configuration> |
|
0 commit comments