Skip to content

Commit a114115

Browse files
authored
Merge pull request #185 from Gr33ndev/correctly-implement-slf4j
correctly integrate slf4j via pom
2 parents e718e7e + 29a4098 commit a114115

1 file changed

Lines changed: 13 additions & 2 deletions

File tree

pom.xml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,21 @@
9090
<version>4.13.1</version>
9191
<scope>test</scope>
9292
</dependency>
93+
<dependency>
94+
<groupId>org.slf4j</groupId>
95+
<artifactId>slf4j-api</artifactId>
96+
<version>2.0.7</version>
97+
</dependency>
9398
<dependency>
9499
<groupId>org.apache.logging.log4j</groupId>
95-
<artifactId>log4j-slf4j18-impl</artifactId>
96-
<version>2.18.0</version>
100+
<artifactId>log4j-slf4j2-impl</artifactId>
101+
<version>2.20.0</version>
102+
<exclusions>
103+
<exclusion>
104+
<groupId>org.slf4j</groupId>
105+
<artifactId>slf4j-api</artifactId>
106+
</exclusion>
107+
</exclusions>
97108
</dependency>
98109
<dependency>
99110
<groupId>org.apache.commons</groupId>

0 commit comments

Comments
 (0)