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.

19 lines
552 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)
}