|
28 | 28 | <properties>
|
29 | 29 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
30 | 30 | <maven.compiler.release>8</maven.compiler.release>
|
31 |
| - <testng.version>7.5</testng.version> |
| 31 | + <logback.version>1.3.15</logback.version> |
| 32 | + <slf4j.version>2.0.17</slf4j.version> |
| 33 | + <testng.version>7.5.1</testng.version> |
32 | 34 | <compiler-plugin.version>3.10.1</compiler-plugin.version>
|
33 | 35 | <surefire-plugin.version>3.0.0-M7</surefire-plugin.version>
|
34 | 36 | <source-plugin.version>3.2.1</source-plugin.version>
|
|
60 | 62 |
|
61 | 63 | <dependencyManagement>
|
62 | 64 | <dependencies>
|
| 65 | + <dependency> |
| 66 | + <groupId>ch.qos.logback</groupId> |
| 67 | + <artifactId>logback-classic</artifactId> |
| 68 | + <version>${logback.version}</version> |
| 69 | + </dependency> |
| 70 | + <dependency> |
| 71 | + <groupId>ch.qos.logback</groupId> |
| 72 | + <artifactId>logback-core</artifactId> |
| 73 | + <version>${logback.version}</version> |
| 74 | + </dependency> |
| 75 | + <dependency> |
| 76 | + <groupId>org.slf4j</groupId> |
| 77 | + <artifactId>slf4j-api</artifactId> |
| 78 | + <version>${slf4j.version}</version> |
| 79 | + </dependency> |
63 | 80 | <dependency>
|
64 | 81 | <groupId>org.testng</groupId>
|
65 | 82 | <artifactId>testng</artifactId>
|
|
74 | 91 | </dependencyManagement>
|
75 | 92 |
|
76 | 93 | <dependencies>
|
| 94 | + <dependency> |
| 95 | + <groupId>ch.qos.logback</groupId> |
| 96 | + <artifactId>logback-classic</artifactId> |
| 97 | + <scope>test</scope> |
| 98 | + </dependency> |
| 99 | + <dependency> |
| 100 | + <groupId>ch.qos.logback</groupId> |
| 101 | + <artifactId>logback-core</artifactId> |
| 102 | + <scope>test</scope> |
| 103 | + </dependency> |
| 104 | + <dependency> |
| 105 | + <groupId>org.slf4j</groupId> |
| 106 | + <artifactId>slf4j-api</artifactId> |
| 107 | + <scope>test</scope> |
| 108 | + </dependency> |
77 | 109 | <dependency>
|
78 | 110 | <groupId>org.testng</groupId>
|
79 | 111 | <artifactId>testng</artifactId>
|
|
0 commit comments