-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Expand file tree
/
Copy pathsettings.gradle
More file actions
31 lines (28 loc) · 813 Bytes
/
settings.gradle
File metadata and controls
31 lines (28 loc) · 813 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
30
31
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
maven { url = 'https://repo.spring.io/milestone' }
maven { url = 'https://repo.spring.io/snapshot' }
}
}
plugins {
id 'io.spring.develocity.conventions' version '0.0.25'
}
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)
}
}
}
}
}