Skip to content

Commit 0ac4815

Browse files
committed
Raise the minimum supported version of REST Assured to 5.5
Closes gh-975
1 parent f749055 commit 0ac4815

File tree

3 files changed

+2
-10
lines changed

3 files changed

+2
-10
lines changed

docs/src/docs/asciidoc/getting-started.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Spring REST Docs has the following minimum requirements:
2020
* Java 17
2121
* Spring Framework 7
2222

23-
Additionally, the `spring-restdocs-restassured` module requires REST Assured 5.2.
23+
Additionally, the `spring-restdocs-restassured` module requires REST Assured 5.5.
2424

2525

2626

spring-restdocs-platform/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ dependencies {
2626
api("org.javamoney:moneta:1.4.2")
2727
}
2828
api(enforcedPlatform("com.fasterxml.jackson:jackson-bom:2.14.0"))
29-
api(enforcedPlatform("io.rest-assured:rest-assured-bom:5.2.1"))
29+
api(enforcedPlatform("io.rest-assured:rest-assured-bom:5.5.2"))
3030
api(enforcedPlatform("org.mockito:mockito-bom:4.9.0"))
3131
api(enforcedPlatform("org.junit:junit-bom:5.13.0"))
3232
api(enforcedPlatform("org.springframework:spring-framework-bom:$springFrameworkVersion"))

spring-restdocs-restassured/build.gradle

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
plugins {
22
id 'org.springframework.restdocs.conventions'
3-
id "io.spring.compatibility-test" version "0.0.4"
43
id "java-library"
54
id "maven-publish"
65
}
@@ -17,10 +16,3 @@ dependencies {
1716
testImplementation("com.fasterxml.jackson.core:jackson-databind")
1817
testImplementation("org.apache.tomcat.embed:tomcat-embed-core")
1918
}
20-
21-
compatibilityTest {
22-
dependency("REST Assured") { restAssured ->
23-
restAssured.groupId = "io.rest-assured"
24-
restAssured.versions = ["5.3.+", "5.4.+", "5.5.+"]
25-
}
26-
}

0 commit comments

Comments
 (0)