Regenerate guide based on macro updates from @btalbott
This commit is contained in:
parent
f56b6ba306
commit
f24bcd8547
|
@ -20,7 +20,7 @@ What you'll need
|
||||||
How to complete this guide
|
How to complete this guide
|
||||||
--------------------------
|
--------------------------
|
||||||
|
|
||||||
Like all Spring's [Getting Started guides](/getting-started), you can start from scratch and complete each step, or you can bypass basic setup steps that are already familiar to you. Either way, you end up with working code.
|
Like all Spring's [Getting Started guides](guides/gs), you can start from scratch and complete each step, or you can bypass basic setup steps that are already familiar to you. Either way, you end up with working code.
|
||||||
|
|
||||||
To **start from scratch**, move on to [Set up the project](#scratch).
|
To **start from scratch**, move on to [Set up the project](#scratch).
|
||||||
|
|
||||||
|
@ -28,7 +28,7 @@ To **skip the basics**, do the following:
|
||||||
|
|
||||||
- [Download][zip] and unzip the source repository for this guide, or clone it using [git](/understanding/git):
|
- [Download][zip] and unzip the source repository for this guide, or clone it using [git](/understanding/git):
|
||||||
`git clone https://github.com/springframework-meta/gs-batch-processing.git`
|
`git clone https://github.com/springframework-meta/gs-batch-processing.git`
|
||||||
- cd into `gs-batch-processing/initial`
|
- cd into `gs-batch-processing/initial`.
|
||||||
- Jump ahead to [Create a business class](#initial).
|
- Jump ahead to [Create a business class](#initial).
|
||||||
|
|
||||||
**When you're finished**, you can check your results against the code in `gs-batch-processing/complete`.
|
**When you're finished**, you can check your results against the code in `gs-batch-processing/complete`.
|
||||||
|
@ -38,7 +38,7 @@ To **skip the basics**, do the following:
|
||||||
<a name="scratch"></a>
|
<a name="scratch"></a>
|
||||||
Set up the project
|
Set up the project
|
||||||
------------------
|
------------------
|
||||||
First you set up a basic build script. You can use any build system you like when building apps with Spring, but the code you need to work with [Maven](https://maven.apache.org) and [Gradle](http://gradle.org) is included here. If you're not familiar with either, refer to [Building Java Projects with Maven](../gs-maven/README.md) or [Building Java Projects with Gradle](../gs-gradle/README.md).
|
First you set up a basic build script. You can use any build system you like when building apps with Spring, but the code you need to work with [Maven](https://maven.apache.org) and [Gradle](http://gradle.org) is included here. If you're not familiar with either, refer to [Building Java Projects with Maven](guides/gs/maven/content) or [Building Java Projects with Gradle](guides/gs/gradle/content).
|
||||||
|
|
||||||
### Create the directory structure
|
### Create the directory structure
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue