From 58b411b9d7038fe11eaaabcd3334bee152ec5495 Mon Sep 17 00:00:00 2001 From: alpengiraffe <262565626+alpengiraffe@users.noreply.github.com> Date: Thu, 12 Mar 2026 23:28:14 +0100 Subject: [PATCH] README.adoc and link for pre-initialized project refer to "Spring Batch" as depency, however "Spring Batch JDBC" is needed. Fix for https://github.com/spring-guides/gs-batch-processing/issues/84 Signed-off-by: alpengiraffe <262565626+alpengiraffe@users.noreply.github.com> --- README.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.adoc b/README.adoc index bcadc36..c401e73 100644 --- a/README.adoc +++ b/README.adoc @@ -19,14 +19,14 @@ include::https://raw.githubusercontent.com/spring-guides/getting-started-macros/ [[scratch]] == Starting with Spring Initializr -You can use this https://start.spring.io/#!type=maven-project&groupId=com.example&artifactId=batch-processing&name=batch-processing&description=Demo%20project%20for%20Spring%20Boot&packageName=com.example.batch-processing&dependencies=batch,hsql[pre-initialized project] and click Generate to download a ZIP file. This project is configured to fit the examples in this tutorial. +You can use this https://start.spring.io/#!type=maven-project&groupId=com.example&artifactId=batch-processing&name=batch-processing&description=Demo%20project%20for%20Spring%20Boot&packageName=com.example.batch-processing&dependencies=batch-jdbc,hsql[pre-initialized project] and click Generate to download a ZIP file. This project is configured to fit the examples in this tutorial. To manually initialize the project: . Navigate to https://start.spring.io. This service pulls in all the dependencies you need for an application and does most of the setup for you. . Choose either Gradle or Maven and the language you want to use. This guide assumes that you chose Java. -. Click *Dependencies* and select *Spring Batch* and *HyperSQL Database*. +. Click *Dependencies* and select *Spring Batch JDBC* and *HyperSQL Database*. . Click *Generate*. . Download the resulting ZIP file, which is an archive of an application that is configured with your choices.