forked from spring-projects/spring-integration-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle
More file actions
29 lines (26 loc) · 708 Bytes
/
settings.gradle
File metadata and controls
29 lines (26 loc) · 708 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
}
}
plugins {
id 'io.spring.develocity.conventions' version '0.0.21'
}
rootProject.name = 'spring-integration-samples'
['advanced', 'applications', 'basic', 'intermediate', 'dsl'].each {
def projectDir = new File(rootDir, it)
include ":${it}"
projectDir.eachDir { dir ->
if (!dir.name.startsWith('.') && 'splunk' != dir.name) {
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)
}
}
}
}
}