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
558 B
Kotlin
19 lines
558 B
Kotlin
plugins {
|
|
id(SpringBoot.plugin) version SpringBoot.version
|
|
id(SpringDependencyManagement.plugin) version SpringDependencyManagement.version
|
|
id("java")
|
|
id("war")
|
|
}
|
|
|
|
extra["log4j2.version"] = Log4j2.version
|
|
|
|
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)
|
|
}
|