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.

25 lines
752 B
Plaintext

3 years ago
plugins {
id(SpringBoot.plugin) version SpringBoot.version
id(SpringDependencyManagement.plugin) version SpringDependencyManagement.version
3 years ago
id("java")
id("war")
3 years ago
}
extra["log4j2.version"] = "2.15.0"
dependencies {
implementation(project(":wizard-core"))
3 years ago
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)
}