Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ snappyJavaVersion=1.1.10.7
# Also, update apacheTomcatVersion above to match Spring Boot's Tomcat dependency version
springBootVersion=3.4.1
# This usually matches the Spring Framework version dictated by springBootVersion
springVersion=6.2.1
springVersion=6.2.3

sqliteJdbcVersion=3.48.0.0

Expand Down
2 changes: 1 addition & 1 deletion server/bootstrap/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,4 @@ project.afterEvaluate {
}
}
}
}
}
8 changes: 7 additions & 1 deletion server/embedded/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ configurations.configureEach {
}

dependencies {
// Needed to support composite Log4j2 plugins using JSONLayout elements
implementation "com.fasterxml.jackson.core:jackson-databind:${jacksonDatabindVersion}"

implementation("org.springframework.boot:spring-boot-starter-web:${springBootVersion}") {
exclude group: "org.springframework.boot", module: "spring-boot-starter-json" // Not used (?) and pulls in an old version of Jackson
exclude group: "jakarta.annotation", module: "jakarta.annotation-api" // Already present in tomcat-annotations-api
Expand Down Expand Up @@ -77,7 +80,10 @@ dependencies {
runtimeOnly("org.apache.tomcat:tomcat-dbcp:${apacheTomcatVersion}") {
exclude group: "org.apache.tomcat", module: "tomcat-juli"
}
runtimeOnly "org.apache.logging.log4j:log4j-slf4j2-impl:${log4j2Version}"
implementation ("org.apache.logging.log4j:log4j-slf4j2-impl:${log4j2Version}") {
exclude group: 'commons-logging', module: 'commons-logging'
}

implementation "commons-io:commons-io:${commonsIoVersion}"
implementation "org.apache.logging.log4j:log4j-core:${log4j2Version}"

Expand Down