You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
plugins {
|
|
|
|
id(SpringBoot.plugin) version SpringBoot.version
|
|
|
|
id(SpringDependencyManagement.plugin) version SpringDependencyManagement.version
|
|
|
|
id("java")
|
|
|
|
id("war")
|
|
|
|
}
|
|
|
|
|
|
|
|
extra["log4j2.version"] = "2.15.0"
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation(project(":wizard-core"))
|
|
|
|
implementation(project(":wizard-common"))
|
|
|
|
implementation(SpringBoot.starterWebsocket) {
|
|
|
|
exclude(group = SpringBoot.group, module = "spring-boot-starter-logging")
|
|
|
|
}
|
|
|
|
implementation(SpringBoot.starterLog4j2)
|
|
|
|
providedRuntime(SpringBoot.starterTomcat)
|
|
|
|
|
|
|
|
// override vulnerable dependencies from spring-boot-starter-log4j2
|
|
|
|
implementation(Log4j2.api)
|
|
|
|
implementation(Log4j2.core)
|
|
|
|
implementation(Log4j2.slf4j)
|
|
|
|
implementation(Log4j2.jul)
|
|
|
|
}
|