22 lines
654 B
Groovy
22 lines
654 B
Groovy
|
plugins {
|
||
|
id "java"
|
||
|
}
|
||
|
|
||
|
description = "Spring Boot Tomcat 11 smoke test"
|
||
|
|
||
|
configurations.all {
|
||
|
resolutionStrategy.eachDependency {
|
||
|
if (it.requested.group == 'org.apache.tomcat' || it.requested.group == 'org.apache.tomcat.embed') {
|
||
|
it.useVersion '11.0.0'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter"))
|
||
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat"))
|
||
|
implementation("org.springframework:spring-webmvc")
|
||
|
|
||
|
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
|
||
|
}
|