31 lines
1.6 KiB
Groovy
31 lines
1.6 KiB
Groovy
plugins {
|
|
id "java-library"
|
|
}
|
|
|
|
description = "Spring Boot Actuator Integration Tests"
|
|
|
|
|
|
dependencies {
|
|
testImplementation(project(":spring-boot-project:spring-boot-actuator"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-autoconfigure"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-http-converter"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-jackson"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-jersey"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-metrics"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-reactor-netty"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-test"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-tomcat"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-web-server"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-webflux"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-webmvc"))
|
|
testImplementation(testFixtures(project(":spring-boot-project:spring-boot-jersey")))
|
|
testImplementation(testFixtures(project(":spring-boot-project:spring-boot-webflux")))
|
|
testImplementation(testFixtures(project(":spring-boot-project:spring-boot-webmvc")))
|
|
testImplementation("io.micrometer:micrometer-registry-prometheus")
|
|
testImplementation("io.prometheus:prometheus-metrics-exposition-formats")
|
|
testImplementation("net.minidev:json-smart")
|
|
testImplementation("org.springframework.security:spring-security-web")
|
|
testRuntimeOnly("ch.qos.logback:logback-classic")
|
|
}
|