Skip to content

Commit b7c77a4

Browse files
authoredDec 27, 2021
Use SLF4J commons-logging bridge (#311)
https://www.slf4j.org/legacy.html#jclOverSLF4J
1 parent ee60f87 commit b7c77a4

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed
 

‎core/pom.xml

+10
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@
2525
<dependency>
2626
<groupId>io.swagger.parser.v3</groupId>
2727
<artifactId>swagger-parser-v2-converter</artifactId>
28+
<exclusions>
29+
<exclusion>
30+
<groupId>commons-logging</groupId>
31+
<artifactId>commons-logging</artifactId>
32+
</exclusion>
33+
</exclusions>
2834
</dependency>
2935
<dependency>
3036
<groupId>com.j2html</groupId>
@@ -38,6 +44,10 @@
3844
<groupId>org.slf4j</groupId>
3945
<artifactId>slf4j-api</artifactId>
4046
</dependency>
47+
<dependency>
48+
<groupId>org.slf4j</groupId>
49+
<artifactId>jcl-over-slf4j</artifactId>
50+
</dependency>
4151
<dependency>
4252
<groupId>org.junit.jupiter</groupId>
4353
<artifactId>junit-jupiter</artifactId>

‎pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,11 @@
141141
<artifactId>slf4j-api</artifactId>
142142
<version>${slf4j.version}</version>
143143
</dependency>
144+
<dependency>
145+
<groupId>org.slf4j</groupId>
146+
<artifactId>jcl-over-slf4j</artifactId>
147+
<version>${slf4j.version}</version>
148+
</dependency>
144149
<dependency>
145150
<groupId>ch.qos.logback</groupId>
146151
<artifactId>logback-classic</artifactId>

0 commit comments

Comments
 (0)