From 1275595f0b42dad2d47aa9fea1dde7ffa6434f73 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Thu, 23 Oct 2025 12:54:37 +0100 Subject: [PATCH] Make spring-boot-transaction an api dependency of spring-boot-jdbc Closes gh-47764 --- module/spring-boot-jdbc/build.gradle | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/module/spring-boot-jdbc/build.gradle b/module/spring-boot-jdbc/build.gradle index b392250e97b..562c159a804 100644 --- a/module/spring-boot-jdbc/build.gradle +++ b/module/spring-boot-jdbc/build.gradle @@ -28,12 +28,11 @@ description = "Spring Boot JDBC" dependencies { api(project(":core:spring-boot")) api(project(":module:spring-boot-sql")) + api(project(":module:spring-boot-transaction")) api("org.springframework:spring-jdbc") compileOnly("com.fasterxml.jackson.core:jackson-annotations") - implementation(project(":module:spring-boot-transaction")) - optional(project(":core:spring-boot-autoconfigure")) optional(project(":core:spring-boot-docker-compose")) optional(project(":core:spring-boot-testcontainers"))