Updated for 2.2.3 release

This commit is contained in:
Michael Minella
2013-11-22 13:25:12 -06:00
parent 8329cca4b7
commit f2872bca22
2 changed files with 4 additions and 4 deletions

View File

@@ -26,8 +26,8 @@ github_repo_url: https://github.com/spring-projects/spring-batch.git
forum: http://forum.spring.io/forum/spring-projects/batch
# If you want to include a custom pom.xml or gradle template set these value to true and add _include files
custom_pom_template: false
custom_gradle_template: false
custom_pom_template: true
custom_gradle_template: true
### The following properties are constant for most projects

View File

@@ -65,13 +65,13 @@ The quickest way to get started with Spring Batch is to download the zip file an
1. Download the zip release from our repository: [Download](http://static.springsource.org/downloads/nightly/release-download.php?project=BATCH)
2. After unzipping the download, copy the /samples/spring-batch-simple-cli folder to your workspace.
3. From the root of you new project's directory, you can build the project via maven `mvn clean install`
4. From the project's target directory, you'll be able to run your new job (pipes a file into an in memory database table) via the command `java -jar spring-batch-simple-cli-2.2.1.RELEASE.jar launch-context.xml personJob`
4. From the project's target directory, you'll be able to run your new job (pipes a file into an in memory database table) via the command `java -jar spring-batch-simple-cli-2.2.3.RELEASE.jar launch-context.xml personJob`
## Java based configuration (3.0+)
1. Download the zip release from our repository: [Download](http://static.springsource.org/downloads/nightly/milestone-download.php?project=BATCH)
2. After unzipping the download, copy the /samples/spring-batch-simple-cli-javaconfig folder to your workspace.
3. From the root of you new project's directory, you can build the project via maven `mvn clean install`
4. From the project's target directory, you'll be able to run your new job (pipes a file into an in memory database table) via the command `java -jar spring-batch-simple-cli-3.0.0.M1.jar example.LaunchContext personJob`
4. From the project's target directory, you'll be able to run your new job (pipes a file into an in memory database table) via the command `java -jar spring-batch-simple-cli-3.0.0.M2.jar example.LaunchContext personJob`
{% endcapture %}