Files
spring-integration-samples/settings.gradle
Artem Bilan ea3ba21249 INTSAMPLES-122: Migrate to Gradle
JIRA: https://jira.springsource.org/browse/INTSAMPLES-122

INTSAMPLES-122: Polishing

INTSAMPLES-122: Add generated poms

* Upgrade some dependencies

INTSAMPLES-122: Cover Java/DSL sample

INTSAMPLES-122: Upgrade to SI 4.0.1 & SF 4.0.5

INTSAMPLES-122: Polishing according PR comments

Make gradlew executable
2014-05-28 12:58:25 -04:00

17 lines
487 B
Groovy

rootProject.name = 'spring-integration-samples'
['advanced', 'applications', 'basic', 'intermediate', 'dsl'].each {
def projectDir = new File(rootDir, it)
include ":${it}"
projectDir.eachDir { dir ->
include ":${dir.name}"
project(":${dir.name}").projectDir = new File(projectDir.absolutePath, dir.name)
if ('cafe' == dir.name) {
dir.eachDir { cafe ->
include ":${cafe.name}"
project(":${cafe.name}").projectDir = new File(dir.absolutePath, cafe.name)
}
}
}
}