DSL: Introduce SubFlows
Add `subFlow` support for `router`s Move some tests to separate domain classes Fix some component registrations DSL: Fix `SubFlow` registration according PR discussion * Add IO plugin * Fix SI 4.0 <-> 4.1 compatibility by `springIoCheck` results * Further divide for tests to separate domain classes DSL: Add `discardFlow` to the `.filter()` Make `.router()` `subFlow`s as `always return to the main flow` Add `.publishSubscribeChannel()` EIP-method with `.subscriber()` to specify subscribers as `subFlow`s Polishing
This commit is contained in:
committed by
Gary Russell
parent
74102a022d
commit
be9767b8a9
@@ -5,15 +5,32 @@ apply from: "${rootProject.projectDir}/publish-maven.gradle"
|
||||
apply plugin: 'eclipse'
|
||||
apply plugin: 'idea'
|
||||
|
||||
buildscript {
|
||||
repositories {
|
||||
maven { url 'http://repo.spring.io/plugins-release' }
|
||||
}
|
||||
dependencies {
|
||||
classpath 'org.springframework.build.gradle:spring-io-plugin:0.0.3.RELEASE'
|
||||
}
|
||||
}
|
||||
|
||||
group = 'org.springframework.integration'
|
||||
|
||||
repositories {
|
||||
if (version.endsWith('BUILD-SNAPSHOT')) {
|
||||
if (version.endsWith('BUILD-SNAPSHOT') || project.hasProperty('platformVersion')) {
|
||||
maven { url 'http://repo.spring.io/libs-snapshot' }
|
||||
}
|
||||
maven { url 'http://repo.spring.io/libs-milestone' }
|
||||
}
|
||||
|
||||
if (project.hasProperty('platformVersion')) {
|
||||
apply plugin: 'spring-io'
|
||||
|
||||
dependencies {
|
||||
springIoVersions "io.spring.platform:platform-versions:${platformVersion}@properties"
|
||||
}
|
||||
}
|
||||
|
||||
compileJava {
|
||||
sourceCompatibility = 1.6
|
||||
targetCompatibility = 1.6
|
||||
|
||||
Reference in New Issue
Block a user