Skip to content

Commit d0408b6

Browse files
authored
Upgrade more dependencies (#40)
1 parent ce04b27 commit d0408b6

File tree

1 file changed

+33
-1
lines changed

1 file changed

+33
-1
lines changed

pom.xml

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@
2828
<properties>
2929
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3030
<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>
3234
<compiler-plugin.version>3.10.1</compiler-plugin.version>
3335
<surefire-plugin.version>3.0.0-M7</surefire-plugin.version>
3436
<source-plugin.version>3.2.1</source-plugin.version>
@@ -60,6 +62,21 @@
6062

6163
<dependencyManagement>
6264
<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>
6380
<dependency>
6481
<groupId>org.testng</groupId>
6582
<artifactId>testng</artifactId>
@@ -74,6 +91,21 @@
7491
</dependencyManagement>
7592

7693
<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>
77109
<dependency>
78110
<groupId>org.testng</groupId>
79111
<artifactId>testng</artifactId>

0 commit comments

Comments
 (0)