Updated versions in documentation & dependency management within samples

Versions where updated in documentation that is included in the
generation of our reference documentation.

Also, to clean up version management within the samples, the
spring-cloud-task-dependencies was introduced into each pom so that
versions are managed at that level.

Updated a version number
This commit is contained in:
Michael Minella
2016-06-14 13:31:47 -05:00
committed by Glenn Renfro
parent 30fe0602d0
commit bf50b7ad30
10 changed files with 91 additions and 16 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.BUILD-SNAPSHOT"));
"1.0.0.RC1"));
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.BUILD-SNAPSHOT</version>
<version>1.0.0.RC1</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.BUILD-SNAPSHOT
module register --name taskProcessor --type processor --uri maven:io.spring:taskprocessor:1.0.0.BUILD-SNAPSHOT
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
```
Creating a stream from the Spring Cloud Data Flow shell would look like this: