From f20cd372786cd39756bb5bd58fb7619bdb8e382d Mon Sep 17 00:00:00 2001 From: Gary Russell Date: Tue, 27 Oct 2015 13:07:46 -0400 Subject: [PATCH] Update to SI 4.0.8 --- build.gradle | 6 +++--- .../integration/samples/dsl/cafe/Application.java | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/build.gradle b/build.gradle index 9b8bfe5b..fc2ff453 100644 --- a/build.gradle +++ b/build.gradle @@ -191,10 +191,10 @@ subprojects { subproject -> postgresVersion = '9.1-901-1.jdbc4' subethasmtpVersion = '1.2' slf4jVersion = '1.7.6' - springIntegrationVersion = '4.0.7.RELEASE' - springIntegrationDslVersion = '1.0.0.M3' + springIntegrationVersion = '4.0.8.RELEASE' + springIntegrationDslVersion = '1.0.1.RELEASE' springVersion = '4.0.9.RELEASE' - springSecurityVersion = '3.2.4.RELEASE' + springSecurityVersion = '3.2.8.RELEASE' springWebFlowVersion = '2.3.3.RELEASE' tilesJspVersion = '2.2.1' validationApiVersion = '1.0.0.GA' diff --git a/dsl/cafe-dsl/src/main/java/org/springframework/integration/samples/dsl/cafe/Application.java b/dsl/cafe-dsl/src/main/java/org/springframework/integration/samples/dsl/cafe/Application.java index cf2c7b00..14bb9bda 100644 --- a/dsl/cafe-dsl/src/main/java/org/springframework/integration/samples/dsl/cafe/Application.java +++ b/dsl/cafe-dsl/src/main/java/org/springframework/integration/samples/dsl/cafe/Application.java @@ -33,7 +33,7 @@ import org.springframework.integration.annotation.MessagingGateway; import org.springframework.integration.dsl.IntegrationFlow; import org.springframework.integration.dsl.IntegrationFlows; import org.springframework.integration.dsl.channel.MessageChannels; -import org.springframework.integration.dsl.support.Pollers; +import org.springframework.integration.dsl.core.Pollers; import org.springframework.integration.samples.cafe.Delivery; import org.springframework.integration.samples.cafe.Drink; import org.springframework.integration.samples.cafe.DrinkType; @@ -75,9 +75,9 @@ public class Application { } - private AtomicInteger hotDrinkCounter = new AtomicInteger(); + private final AtomicInteger hotDrinkCounter = new AtomicInteger(); - private AtomicInteger coldDrinkCounter = new AtomicInteger(); + private final AtomicInteger coldDrinkCounter = new AtomicInteger(); @Bean public Executor taskExecutor() {