Skip to content

Commit 27145df

Browse files
committed
Test compatibility with latest versions of REST Assured
1 parent 694f28e commit 27145df

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

spring-restdocs-restassured/build.gradle

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
plugins {
2+
id "io.spring.compatibility-test" version "0.0.3"
23
id "java-library"
34
id "maven-publish"
45
}
@@ -22,3 +23,10 @@ dependencies {
2223
testImplementation("org.hamcrest:hamcrest-library")
2324
testImplementation("org.mockito:mockito-core")
2425
}
26+
27+
compatibilityTest {
28+
dependency("REST Assured") { restAssured ->
29+
restAssured.groupId = "io.rest-assured"
30+
restAssured.versions = ["5.3.+", "5.4.+", "5.5.+"]
31+
}
32+
}

0 commit comments

Comments
 (0)