2020-01-10 21:48:43 +08:00
|
|
|
plugins {
|
2020-01-23 03:24:37 +08:00
|
|
|
id "war"
|
|
|
|
id "org.springframework.boot.conventions"
|
|
|
|
id "org.springframework.boot.integration-test"
|
2020-01-10 21:48:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
description = "Spring Boot Deployment Tests"
|
|
|
|
|
|
|
|
dependencies {
|
2020-01-23 03:24:37 +08:00
|
|
|
implementation (project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web")) {
|
|
|
|
exclude group: "org.hibernate.validator"
|
2020-01-10 21:48:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
intTestImplementation enforcedPlatform(project(path: ":spring-boot-project:spring-boot-parent"))
|
2020-01-23 03:24:37 +08:00
|
|
|
intTestImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
|
|
|
intTestImplementation project(":spring-boot-project:spring-boot-tools:spring-boot-test-support")
|
|
|
|
intTestImplementation "org.apache.httpcomponents:httpasyncclient"
|
|
|
|
intTestImplementation "org.awaitility:awaitility"
|
|
|
|
intTestImplementation "org.testcontainers:testcontainers"
|
|
|
|
intTestImplementation "org.springframework:spring-web"
|
2020-01-10 21:48:43 +08:00
|
|
|
|
2020-01-23 03:24:37 +08:00
|
|
|
providedRuntime project(":spring-boot-project:spring-boot-starters:spring-boot-starter-tomcat")
|
2020-01-10 21:48:43 +08:00
|
|
|
|
2020-01-23 03:24:37 +08:00
|
|
|
runtimeOnly project(":spring-boot-project:spring-boot-starters:spring-boot-starter-actuator")
|
2020-01-10 21:48:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
intTest {
|
|
|
|
dependsOn war
|
|
|
|
}
|