Sets Version of repo to 1.2.1

* Docs and poms updated

* Updated deployer dependencies

resolves #323
This commit is contained in:
Glenn Renfro
2017-06-26 16:58:00 -04:00
parent 6c47223859
commit c7f15f5c8a
22 changed files with 43 additions and 43 deletions

View File

@@ -27,7 +27,7 @@ $ ./mvnw clean install
[source,shell,indent=2]
----
$ java -jar target/batch-events-1.1.0.RELEASE.jar --spring.cloud.stream.bindings.batch-events.contentType=application/json
$ java -jar target/batch-events-1.2.0.RELEASE.jar --spring.cloud.stream.bindings.batch-events.contentType=application/json
----
For example you can listen for specific job execution events on a specified channel with a Spring Cloud Stream Sink

View File

@@ -4,7 +4,7 @@
<groupId>io.spring.cloud</groupId>
<artifactId>batch-events</artifactId>
<version>1.3.0.BUILD-SNAPSHOT</version>
<version>1.2.1.BUILD-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Batch Events Sample Application</name>
@@ -27,7 +27,7 @@
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-task-dependencies</artifactId>
<version>1.3.0.BUILD-SNAPSHOT</version>
<version>1.2.1.BUILD-SNAPSHOT</version>
<type>pom</type>
<scope>import</scope>
</dependency>

View File

@@ -22,5 +22,5 @@ $ mvn clean package
[source,shell,indent=2]
----
$ java -jar target/batch-job-1.1.0.RELEASE.jar
$ java -jar target/batch-job-1.2.0.RELEASE.jar
----

View File

@@ -5,7 +5,7 @@
<groupId>io.spring.cloud</groupId>
<artifactId>batch-job</artifactId>
<packaging>jar</packaging>
<version>1.3.0.BUILD-SNAPSHOT</version>
<version>1.2.1.BUILD-SNAPSHOT</version>
<description>Spring Cloud Task Batch Example</description>
<name>Batch Job Sample Application</name>
@@ -27,7 +27,7 @@
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-task-dependencies</artifactId>
<version>1.3.0.BUILD-SNAPSHOT</version>
<version>1.2.1.BUILD-SNAPSHOT</version>
<type>pom</type>
<scope>import</scope>
</dependency>

View File

@@ -24,5 +24,5 @@ $ mvn clean package
[source,shell,indent=2]
----
$ java -jar target/jpa-sample-1.3.0.RELEASE.jar
$ java -jar target/jpa-sample-1.2.1.BUILD-SNAPSHOT.jar
----

View File

@@ -21,7 +21,7 @@
<groupId>io.spring.cloud</groupId>
<artifactId>jpa-sample</artifactId>
<packaging>jar</packaging>
<version>1.3.0.BUILD-SNAPSHOT</version>
<version>1.2.1.BUILD-SNAPSHOT</version>
<description>To show users how to enable a task with a JPA application.</description>
<name>Spring Cloud Task JPA Sample Application</name>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-task-dependencies</artifactId>
<version>1.3.0.BUILD-SNAPSHOT</version>
<version>1.2.1.BUILD-SNAPSHOT</version>
<type>pom</type>
<scope>import</scope>
</dependency>

View File

@@ -22,7 +22,7 @@ $ export spring_datasource_url=jdbc:mysql://localhost:3306/<your database>
$ export spring_datasource_username=<your username>
$ export spring_datasource_password=<your password>
$ export spring_datasource_driverClassName=org.mariadb.jdbc.Driver
$ java -jar target/partitioned-batch-job-1.1.0.RELEASE.jar
$ java -jar target/partitioned-batch-job-1.2.0.RELEASE.jar
----
NOTE: This example will use require a MySql RDBMS repository and currently uses the mariadb jdbc driver to connect.

View File

@@ -6,7 +6,7 @@
<artifactId>partitioned-batch-job</artifactId>
<packaging>jar</packaging>
<name>Partitioned Batch Job</name>
<version>1.3.0.BUILD-SNAPSHOT</version>
<version>1.2.1.BUILD-SNAPSHOT</version>
<description>Sample of using the DeployerPartitionHandler</description>
<parent>
@@ -26,7 +26,7 @@
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-task-dependencies</artifactId>
<version>1.3.0.BUILD-SNAPSHOT</version>
<version>1.2.1.BUILD-SNAPSHOT</version>
<type>pom</type>
<scope>import</scope>
</dependency>

View File

@@ -11,7 +11,7 @@
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-task-parent</artifactId>
<version>1.3.0.BUILD-SNAPSHOT</version>
<version>1.2.1.BUILD-SNAPSHOT</version>
</parent>
<properties>
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-task-dependencies</artifactId>
<version>1.3.0.BUILD-SNAPSHOT</version>
<version>1.2.1.BUILD-SNAPSHOT</version>
<type>pom</type>
<scope>import</scope>
</dependency>

View File

@@ -17,7 +17,7 @@ $ ./mvnw clean install
[source,shell,indent=2]
----
$ java -jar target/task-events-1.1.0.RELEASE.jar --spring.cloud.stream.bindings.task-events.contentType=application/json
$ java -jar target/task-events-1.2.0.RELEASE.jar --spring.cloud.stream.bindings.task-events.contentType=application/json
----
You can listen for the events on the task-events channel with a Spring Cloud Stream Sink

View File

@@ -4,7 +4,7 @@
<groupId>io.spring.cloud</groupId>
<artifactId>task-events</artifactId>
<version>1.3.0.BUILD-SNAPSHOT</version>
<version>1.2.1.BUILD-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Task Events</name>
@@ -27,7 +27,7 @@
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-task-dependencies</artifactId>
<version>1.3.0.BUILD-SNAPSHOT</version>
<version>1.2.1.BUILD-SNAPSHOT</version>
<type>pom</type>
<scope>import</scope>
</dependency>

View File

@@ -4,7 +4,7 @@
<groupId>io.spring.cloud</groupId>
<artifactId>taskprocessor</artifactId>
<version>1.3.0.BUILD-SNAPSHOT</version>
<version>1.2.1.BUILD-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Task Processor Sample Application</name>
@@ -27,7 +27,7 @@
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-task-dependencies</artifactId>
<version>1.3.0.BUILD-SNAPSHOT</version>
<version>1.2.1.BUILD-SNAPSHOT</version>
<type>pom</type>
<scope>import</scope>
</dependency>

View File

@@ -4,7 +4,7 @@
<groupId>io.spring.cloud</groupId>
<artifactId>tasksink</artifactId>
<version>1.3.0.BUILD-SNAPSHOT</version>
<version>1.2.1.BUILD-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Task Sink Sample Application</name>
@@ -27,7 +27,7 @@
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-task-dependencies</artifactId>
<version>1.3.0.BUILD-SNAPSHOT</version>
<version>1.2.1.BUILD-SNAPSHOT</version>
<type>pom</type>
<scope>import</scope>
</dependency>

View File

@@ -7,7 +7,7 @@
<artifactId>timestamp-task</artifactId>
<packaging>jar</packaging>
<name>Timestamp Task</name>
<version>1.3.0.BUILD-SNAPSHOT</version>
<version>1.2.1.BUILD-SNAPSHOT</version>
<description>Spring Cloud Timestamp Task</description>
<parent>
@@ -27,7 +27,7 @@
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-task-dependencies</artifactId>
<version>1.3.0.BUILD-SNAPSHOT</version>
<version>1.2.1.BUILD-SNAPSHOT</version>
<type>pom</type>
<scope>import</scope>
</dependency>