2022-08-08 22:45:20 +08:00
|
|
|
plugins {
|
|
|
|
id "java"
|
|
|
|
}
|
|
|
|
|
|
|
|
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"))
|
|
|
|
|
2024-02-25 21:46:13 +08:00
|
|
|
runtimeOnly("jakarta.xml.bind:jakarta.xml.bind-api")
|
2022-08-08 22:45:20 +08:00
|
|
|
|
|
|
|
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
|
|
|
|
}
|