Skip to content

Commit 99c64fd

Browse files
committed
[pom] Fix slf4j to use 2.0.16 version
1 parent 3c8b053 commit 99c64fd

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

pom.xml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<groupId>org.mybatis</groupId>
2525
<artifactId>mybatis-parent</artifactId>
2626
<version>45</version>
27-
<relativePath/>
27+
<relativePath />
2828
</parent>
2929

3030
<groupId>org.mybatis.caches</groupId>
@@ -69,6 +69,9 @@
6969

7070
<!-- Reproducible Builds -->
7171
<project.build.outputTimestamp>1669314459</project.build.outputTimestamp>
72+
73+
<!-- External Modules -->
74+
<slf4j.version>2.0.16</slf4j.version>
7275
</properties>
7376

7477
<dependencies>
@@ -92,10 +95,17 @@
9295
<version>5.11.0</version>
9396
<scope>test</scope>
9497
</dependency>
98+
99+
<dependency>
100+
<groupId>org.slf4j</groupId>
101+
<artifactId>slf4j-api</artifactId>
102+
<version>${slf4j.version}</version>
103+
<scope>compile</scope>
104+
</dependency>
95105
<dependency>
96106
<groupId>org.slf4j</groupId>
97107
<artifactId>slf4j-simple</artifactId>
98-
<version>2.0.16</version>
108+
<version>${slf4j.version}</version>
99109
<scope>test</scope>
100110
</dependency>
101111
</dependencies>

0 commit comments

Comments
 (0)