Files
spring-restdocs/spring-restdocs-webtestclient/build.gradle
Andy Wilkinson d58b32cef0 Upgrade to compatibility test plugin 0.0.3
Closes gh-935
2024-09-30 11:05:38 +01:00

31 lines
829 B
Groovy

plugins {
id "io.spring.compatibility-test" version "0.0.3"
id "java-library"
id "maven-publish"
}
description = "Spring REST Docs WebFlux"
dependencies {
api(project(":spring-restdocs-core"))
api("org.springframework:spring-test")
api("org.springframework:spring-webflux")
internal(platform(project(":spring-restdocs-platform")))
testImplementation(testFixtures(project(":spring-restdocs-core")))
testImplementation("junit:junit")
testImplementation("org.assertj:assertj-core")
testImplementation("org.hamcrest:hamcrest-library")
testImplementation("org.mockito:mockito-core")
testRuntimeOnly("org.springframework:spring-context")
}
compatibilityTest {
dependency("Spring Framework") { springFramework ->
springFramework.groupId = "org.springframework"
springFramework.versions = ["6.0.+", "6.2.+"]
}
}