Files
spring-boot/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-servlet/build.gradle
Phillip Webb ad72411e2b Apply conventions plugin to all subprojects
Closes gh-42438
2024-09-24 14:26:32 -07:00

16 lines
481 B
Groovy

plugins {
id "war"
}
description = "Spring Boot Servlet smoke test"
dependencies {
compileOnly(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat"))
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-security"))
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
testRuntimeOnly(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat"))
}