|
| 1 | +plugins { |
| 2 | + id "java-library" |
| 3 | + id "org.springframework.boot.optional-dependencies" |
| 4 | +} |
| 5 | + |
| 6 | +description = "Spring Boot Actuator Testing Support" |
| 7 | + |
| 8 | +dependencies { |
| 9 | + api(project(":spring-boot-project:spring-boot-actuator")) |
| 10 | + api(project(":spring-boot-project:spring-boot-autoconfigure")) |
| 11 | + api(project(":spring-boot-project:spring-boot-http-converter")) |
| 12 | + api(project(":spring-boot-project:spring-boot-jackson")) |
| 13 | + api(project(":spring-boot-project:spring-boot-jersey")) |
| 14 | + api(project(":spring-boot-project:spring-boot-reactor-netty")) |
| 15 | + api(project(":spring-boot-project:spring-boot-test")) |
| 16 | + api(project(":spring-boot-project:spring-boot-tomcat")) |
| 17 | + api(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support")) |
| 18 | + api(project(":spring-boot-project:spring-boot-webflux")) |
| 19 | + api(project(":spring-boot-project:spring-boot-webmvc")) |
| 20 | + api("com.fasterxml.jackson.datatype:jackson-datatype-jsr310") |
| 21 | + api("com.jayway.jsonpath:json-path") |
| 22 | + api("org.assertj:assertj-core") |
| 23 | + api("org.awaitility:awaitility") |
| 24 | + api("org.hamcrest:hamcrest-core") |
| 25 | + api("org.hamcrest:hamcrest-library") |
| 26 | + api("org.junit.jupiter:junit-jupiter") |
| 27 | + api("org.mockito:mockito-core") |
| 28 | + api("org.mockito:mockito-junit-jupiter") |
| 29 | + api("org.skyscreamer:jsonassert") |
| 30 | + api("org.springframework:spring-core") |
| 31 | + api("org.springframework:spring-test") |
| 32 | + api("org.springframework:spring-core-test") |
| 33 | + |
| 34 | + compileOnly("org.junit.platform:junit-platform-engine") |
| 35 | + compileOnly("org.junit.platform:junit-platform-launcher") |
| 36 | + compileOnly("org.springframework:spring-context") |
| 37 | +} |
0 commit comments