From d9aac063a2cc764c1d6e569c02dc2c7efebc8353 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Mon, 19 Jun 2023 15:30:02 +0100 Subject: [PATCH] Prohibit upgrades to Oracle Database 23.2.0.0 Closes gh-35970 --- 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 994d576ea3..e5569d72ef 100644 --- a/spring-boot-project/spring-boot-dependencies/build.gradle +++ b/spring-boot-project/spring-boot-dependencies/build.gradle @@ -1073,6 +1073,9 @@ bom { } } library("Oracle Database", "21.9.0.0") { + prohibit { + versionRange "23.2.0.0" + } group("com.oracle.database.jdbc") { imports = [ "ojdbc-bom"