Updated versions in documentation

This commit is contained in:
Michael Minella
2016-06-28 22:33:07 -05:00
parent 15a1c168d0
commit eb54285c9a
3 changed files with 4 additions and 4 deletions

View File

@@ -68,7 +68,7 @@ public PartitionHandler partitionHandler(TaskLauncher taskLauncher,
MavenResource.parse(String.format("%s:%s:%s",
"io.spring.cloud",
"partitioned-batch-job",
"1.0.0.RC1"));
"1.0.0.RELEASE"));
DeployerPartitionHandler partitionHandler =
new DeployerPartitionHandler(taskLauncher, jobExplorer, resource, "workerStep");

View File

@@ -144,7 +144,7 @@ Spring Cloud Task itself:
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-task-core</artifactId>
<version>1.0.0.RC1</version>
<version>1.0.0.RELEASE</version>
</dependency>
[[getting-started-writing-the-code]]

View File

@@ -50,8 +50,8 @@ Application we created. In the example below we are registering the Processor a
sample applications using the Spring Cloud Data Flow shell:
```
module register --name taskSink --type sink --uri maven://io.spring:tasksink:1.0.0.RC1
module register --name taskProcessor --type processor --uri maven:io.spring:taskprocessor:1.0.0.RC1
module register --name taskSink --type sink --uri maven://io.spring:tasksink:1.0.0.RELEASE
module register --name taskProcessor --type processor --uri maven:io.spring:taskprocessor:1.0.0.RELEASE
```
Creating a stream from the Spring Cloud Data Flow shell would look like this: