Updated dependencices in preparation for M2 release

This commit is contained in:
Michael Minella
2016-04-26 22:24:18 -05:00
parent 619bc567a1
commit f126d51775
13 changed files with 26 additions and 24 deletions

View File

@@ -42,7 +42,6 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
@@ -51,12 +50,12 @@
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-stream-binder-redis</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC2</version>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-stream-test-support-internal</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC3</version>
<scope>test</scope>
</dependency>
</dependencies>

View File

@@ -1 +1,2 @@
spring.application.name=Demo Batch Job Task
logging.level.org.springframework.cloud.task=DEBUG

View File

@@ -41,7 +41,7 @@
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-deployer-local</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.M1</version>
</dependency>
<dependency>

View File

@@ -165,8 +165,8 @@ public class JobConfiguration {
@Bean
@Profile("master")
public Job job(PartitionHandler partitionHandler) throws Exception {
return jobBuilderFactory.get("job")
public Job partitionedJob(PartitionHandler partitionHandler) throws Exception {
return jobBuilderFactory.get("partitionedJob")
.start(step1(partitionHandler))
.build();
}

View File

@@ -0,0 +1,2 @@
spring.application.name=Partitioned Batch Job Task
logging.level.org.springframework.cloud.task=DEBUG

View File

@@ -8,7 +8,7 @@
<version>1.0.0.BUILD-SNAPSHOT</version>
<packaging>jar</packaging>
<name>task-events</name>
<name>Task Events</name>
<description>Demo of publishing task events to Spring Cloud Streams</description>
<parent>
@@ -49,7 +49,7 @@
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-stream-binder-redis</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC2</version>
</dependency>
<dependency>

View File

@@ -37,12 +37,12 @@
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-stream</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC3</version>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-stream-binder-redis</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC2</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
@@ -56,7 +56,7 @@
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-stream-test-support</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC3</version>
<scope>test</scope>
</dependency>
<dependency>

View File

@@ -31,7 +31,7 @@
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-deployer-local</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.M1</version>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
@@ -41,7 +41,7 @@
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-stream-binder-redis</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC2</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
@@ -51,7 +51,7 @@
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-stream-test-support</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC3</version>
<scope>test</scope>
</dependency>
<dependency>