From 452fbf3a3e48a9445f598cbdb4bb2df687c9b472 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Tue, 19 Jan 2021 16:51:58 +0000 Subject: [PATCH] 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 --- spring-boot-project/spring-boot-dependencies/build.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/spring-boot-project/spring-boot-dependencies/build.gradle b/spring-boot-project/spring-boot-dependencies/build.gradle index 6a2b3b988f..5f123987f5 100644 --- a/spring-boot-project/spring-boot-dependencies/build.gradle +++ b/spring-boot-project/spring-boot-dependencies/build.gradle @@ -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",