Skip to content

Commit 452fbf3

Browse files
committed
Prohibit upgrades to REST Assured 4.3
REST Assured 4.3.x requires Groovy 3 that we can't yet upgrade to as there is no compatibile GA of Spock. This commit prohibits upgrades to 4.3 so that Bomr ignores the possible upgrade. See gh-22303
1 parent 847bb62 commit 452fbf3

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

spring-boot-project/spring-boot-dependencies/build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1322,6 +1322,9 @@ bom {
13221322
}
13231323
}
13241324
library("REST Assured", "4.2.1") {
1325+
prohibit("[4.3.0,)") {
1326+
because "it requires Groovy 3"
1327+
}
13251328
group("io.rest-assured") {
13261329
modules = [
13271330
"json-path",

0 commit comments

Comments
 (0)