Skip to content

Commit 266f72d

Browse files
ricardozaniniTihomir Surdilovic
authored andcommitted
Replacing commons-logging with slf4j in transitive dependencies
Signed-off-by: Ricardo Zanini <[email protected]>
1 parent b81016a commit 266f72d

File tree

3 files changed

+19
-0
lines changed

3 files changed

+19
-0
lines changed

api/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@
1818
<groupId>org.slf4j</groupId>
1919
<artifactId>slf4j-api</artifactId>
2020
</dependency>
21+
<dependency>
22+
<groupId>org.slf4j</groupId>
23+
<artifactId>jcl-over-slf4j</artifactId>
24+
</dependency>
2125
<dependency>
2226
<groupId>com.fasterxml.jackson.core</groupId>
2327
<artifactId>jackson-core</artifactId>

pom.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,11 @@
7171
<artifactId>slf4j-api</artifactId>
7272
<version>${version.org.slf4j}</version>
7373
</dependency>
74+
<dependency>
75+
<groupId>org.slf4j</groupId>
76+
<artifactId>jcl-over-slf4j</artifactId>
77+
<version>${version.org.slf4j}</version>
78+
</dependency>
7479
<dependency>
7580
<groupId>com.fasterxml.jackson.core</groupId>
7681
<artifactId>jackson-core</artifactId>
@@ -100,6 +105,12 @@
100105
<groupId>com.github.erosb</groupId>
101106
<artifactId>everit-json-schema</artifactId>
102107
<version>${json.schema.validation.version}</version>
108+
<exclusions>
109+
<exclusion>
110+
<groupId>commons-logging</groupId>
111+
<artifactId>commons-logging</artifactId>
112+
</exclusion>
113+
</exclusions>
103114
</dependency>
104115
<dependency>
105116
<groupId>org.json</groupId>

validation/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@
1818
<groupId>org.slf4j</groupId>
1919
<artifactId>slf4j-api</artifactId>
2020
</dependency>
21+
<dependency>
22+
<groupId>org.slf4j</groupId>
23+
<artifactId>jcl-over-slf4j</artifactId>
24+
</dependency>
2125

2226
<dependency>
2327
<groupId>io.serverlessworkflow</groupId>

0 commit comments

Comments
 (0)