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

@@ -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();
}