Skip to content

Commit fff1c72

Browse files
committed
Bump spring version
Exclude commson-logging to remove warning
1 parent 63825fd commit fff1c72

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ snappyJavaVersion=1.1.10.7
291291
# Also, update apacheTomcatVersion above to match Spring Boot's Tomcat dependency version
292292
springBootVersion=3.4.1
293293
# This usually matches the Spring Framework version dictated by springBootVersion
294-
springVersion=6.2.1
294+
springVersion=6.2.3
295295

296296
sqliteJdbcVersion=3.48.0.0
297297

server/embedded/build.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,10 @@ dependencies {
8080
runtimeOnly("org.apache.tomcat:tomcat-dbcp:${apacheTomcatVersion}") {
8181
exclude group: "org.apache.tomcat", module: "tomcat-juli"
8282
}
83-
implementation "org.apache.logging.log4j:log4j-slf4j2-impl:${log4j2Version}"
83+
implementation ("org.apache.logging.log4j:log4j-slf4j2-impl:${log4j2Version}") {
84+
exclude group: 'commons-logging', module: 'commons-logging'
85+
}
86+
8487
implementation "commons-io:commons-io:${commonsIoVersion}"
8588
implementation "org.apache.logging.log4j:log4j-core:${log4j2Version}"
8689

0 commit comments

Comments
 (0)