From 5022e120c17ca832dc2b07e6059f7b431aeab7ca Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Thu, 20 Jul 2023 13:16:44 +0200 Subject: [PATCH] Configure bomr to filter GraphQL "snapshot" versions See gh-33817 --- spring-boot-project/spring-boot-dependencies/build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/spring-boot-project/spring-boot-dependencies/build.gradle b/spring-boot-project/spring-boot-dependencies/build.gradle index 435e97be8a..34856ae4a7 100644 --- a/spring-boot-project/spring-boot-dependencies/build.gradle +++ b/spring-boot-project/spring-boot-dependencies/build.gradle @@ -322,6 +322,10 @@ bom { } } library("GraphQL Java", "20.4") { + prohibit { + startsWith(["2018-", "2019-", "2020-", "2021-", "230521-"]) + because "These are snapshots that we don't want to see" + } group("com.graphql-java") { modules = [ "graphql-java"