Skip to content

Commit 61d453a

Browse files
committed
Update SLF4J and Logback versions in parent POM #207
Bumped SLF4J to 2.0.17 and Logback to 1.5.20 for improved logging support. Added a new Maven profile 'java8-10' to set Logback version to 1.3.16 for JDK 8-10 compatibility.
1 parent e7a20a0 commit 61d453a

1 file changed

Lines changed: 14 additions & 2 deletions

File tree

microsphere-java-parent/pom.xml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
<jsr305.version>3.0.2</jsr305.version>
2424
<apache.commons.logging.version>1.3.2</apache.commons.logging.version>
2525
<spring.version>6.2.12</spring.version>
26-
<slf4j.version>1.7.36</slf4j.version>
27-
<logback.version>1.2.13</logback.version>
26+
<slf4j.version>2.0.17</slf4j.version>
27+
<logback.version>1.5.20</logback.version>
2828
<!-- Testing -->
2929
<junit.version>6.0.1</junit.version>
3030
<jmh.version>1.37</jmh.version>
@@ -108,6 +108,17 @@
108108
</dependencyManagement>
109109

110110
<profiles>
111+
112+
<profile>
113+
<id>java8-10</id>
114+
<activation>
115+
<jdk>[1.8,11)</jdk>
116+
</activation>
117+
<properties>
118+
<logback.version>1.3.16</logback.version>
119+
</properties>
120+
</profile>
121+
111122
<profile>
112123
<id>java8-16</id>
113124
<activation>
@@ -118,5 +129,6 @@
118129
<junit.version>5.13.4</junit.version>
119130
</properties>
120131
</profile>
132+
121133
</profiles>
122134
</project>

0 commit comments

Comments
 (0)