From c678ae64e58fd863a546f3f3ef92d61f621cd4a6 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Wed, 13 Mar 2024 10:15:59 +0000 Subject: [PATCH] Prohibit Oracle Database 21.10.0.0 - 21.13.0.0 upgrades Closes gh-39694 --- 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 39a2700a52..1b963ec5b1 100644 --- a/spring-boot-project/spring-boot-dependencies/build.gradle +++ b/spring-boot-project/spring-boot-dependencies/build.gradle @@ -1380,6 +1380,10 @@ bom { } } library("Oracle Database", "21.9.0.0") { + prohibit { + versionRange "[21.10.0.0,21.13.0.0]" + because "they do not work in a JVM with assertions enabled" + } group("com.oracle.database.jdbc") { imports = [ "ojdbc-bom"