spring-boot/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-jersey/build.gradle
Andy Wilkinson ba93e6c0ed Restore support for Jersey
Closes gh-28637
2022-08-08 15:45:20 +01:00

19 lines
629 B
Groovy

plugins {
id "java"
id "org.springframework.boot.conventions"
}
description = "Spring Boot Jersey smoke test"
dependencies {
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-actuator"))
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-jersey"))
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat"))
if (JavaVersion.current().java9Compatible) {
runtimeOnly("jakarta.xml.bind:jakarta.xml.bind-api")
}
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
}