Update to SI 4.0.8
This commit is contained in:
@@ -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'
|
||||
|
||||
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user