From f1f10c679d598d57e2cc1cc93c7091ddcbc47122 Mon Sep 17 00:00:00 2001 From: Michael Minella Date: Wed, 30 Apr 2014 11:38:03 -0500 Subject: [PATCH] BATCH-2223: Fixed numbering of bullets --- index.html | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/index.html b/index.html index b0257afcb..bcccd1fd8 100644 --- a/index.html +++ b/index.html @@ -72,9 +72,9 @@ The quickest way to get started with Spring Batch is to use Spring Boot. ```` ````groovy + // Gradle compile("org.springframework.boot:spring-boot-starter-batch") ```` - 2. Create a configuration class to configure your job ````java @@ -109,7 +109,6 @@ public class BatchConfiguration { } } ```` - 3. Create a main class to run your batch job from ````java @@ -120,7 +119,6 @@ public class Main { } } ```` - 4. From there, you can build your project and run it via java -jar <JAR_NAME> where <JAR_NAME> is the name of the jar your build system generates. You can read more about using Spring Boot with Spring Batch in the Getting Started Guide: [Creating a Batch Service]({{site.main_site_url}}/guides/gs/batch-processing).