From 2ec1e822b6388c6181d18704301dede1c9fa99ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Nicoll?= Date: Sun, 26 Oct 2025 08:50:52 +0100 Subject: [PATCH] Make Batch JDBC Test starter depends on Batch Test starter This makes sure that test utilities are shared, typically spring-batch-test. Closes gh-47794 --- starter/spring-boot-starter-batch-jdbc-test/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/starter/spring-boot-starter-batch-jdbc-test/build.gradle b/starter/spring-boot-starter-batch-jdbc-test/build.gradle index 73a764b59aa..05be267f75c 100644 --- a/starter/spring-boot-starter-batch-jdbc-test/build.gradle +++ b/starter/spring-boot-starter-batch-jdbc-test/build.gradle @@ -21,5 +21,6 @@ plugins { description = "Starter for testing using Spring Batch with JDBC" dependencies { + api(project(":starter:spring-boot-starter-batch-test")) api(project(":starter:spring-boot-starter-jdbc-test")) }