Upgrade to SI 4.0

* Add new correlation endpoint options
* Add `messageStore` to the `PriorityChannelSpec`
* Add generic to `EnricherSpec#property`
* Remove `type` from `EnricherSpec.headerExpression`
* Add `initialDelay` for `PeriodicTriggerSpec`
* Fix `IntegrationFlowBuilder` bugs, when there is no relevant the end of the flow
* Add embedded MongoDb support for tests
* Add `priority` test with `MongoDbChannelMessageStore`
This commit is contained in:
Artem Bilan
2014-04-16 15:12:43 +03:00
parent 69bc8d602a
commit 305504196b
11 changed files with 237 additions and 42 deletions

View File

@@ -24,7 +24,7 @@ compileTestJava {
}
ext {
springIntegrationVersion = '4.0.0.BUILD-SNAPSHOT'
springIntegrationVersion = '4.0.0.RC1'
log4jVersion = '1.2.17'
linkHomepage = 'https://github.com/spring-projects/spring-integration-extensions'
@@ -51,6 +51,8 @@ dependencies {
testCompile "org.springframework.integration:spring-integration-event:$springIntegrationVersion"
testCompile "org.springframework.integration:spring-integration-file:$springIntegrationVersion"
testCompile "org.springframework.integration:spring-integration-xml:$springIntegrationVersion"
testCompile "org.springframework.integration:spring-integration-mongodb:$springIntegrationVersion"
testCompile "de.flapdoodle.embed:de.flapdoodle.embed.mongo:1.43"
jacoco group: "org.jacoco", name: "org.jacoco.agent", version: "0.5.6.201201232323", classifier: "runtime"
}