Skip to content

Commit

Permalink
Prohibit upgrades to REST Assured 4.3
Browse files Browse the repository at this point in the history
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
  • Loading branch information
wilkinsona committed Jan 19, 2021
1 parent 847bb62 commit 452fbf3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions spring-boot-project/spring-boot-dependencies/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -1322,6 +1322,9 @@ bom {
}
}
library("REST Assured", "4.2.1") {
prohibit("[4.3.0,)") {
because "it requires Groovy 3"
}
group("io.rest-assured") {
modules = [
"json-path",
Expand Down

0 comments on commit 452fbf3

Please sign in to comment.