This repository has been archived by the owner on Apr 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 288
/
settings.gradle
80 lines (71 loc) · 2.68 KB
/
settings.gradle
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
rootProject.name = 'spring-xd'
include 'spring-xd-analytics'
include 'spring-xd-analytics-ml'
include 'spring-xd-rxjava'
include 'spring-xd-reactor'
include 'spring-xd-messagebus-spi'
include 'spring-xd-messagebus-local'
include 'spring-xd-messagebus-kafka'
include 'spring-xd-messagebus-redis'
include 'spring-xd-messagebus-rabbit'
include 'spring-xd-dirt'
include 'spring-xd-batch'
include 'spring-xd-gemfire-server'
include 'redis'
include 'spring-xd-module'
include 'spring-xd-module-spi'
include 'spring-xd-tuple'
include 'spring-xd-hadoop'
include 'spring-xd-hadoop:hadoop27'
include 'spring-xd-hadoop:cdh5'
include 'spring-xd-hadoop:hdp22'
include 'spring-xd-hadoop:phd21'
include 'spring-xd-hadoop:phd30'
include 'spring-xd-yarn:spring-xd-yarn-client'
include 'spring-xd-yarn:spring-xd-yarn-appmaster'
include 'spring-xd-spark-streaming'
include 'spring-xd-spark-streaming-tests'
include 'spring-xd-test'
include 'spring-xd-rest-client'
include 'spring-xd-rest-domain'
include 'spring-xd-shell'
include 'spring-xd-ui'
include 'spring-xd-integration-test'
include 'spring-xd-integration-test:acceptance-test-sparkapp'
include 'spring-xd-test-fixtures'
include 'spring-xd-distributed-test'
include 'spring-xd-benchmark'
include 'documentation-toolchain'
['source', 'processor', 'sink', 'job'].each {kind->
new File(rootDir, "modules/${kind}").eachDir { dir ->
if (new File(dir, "config/${dir.name}.xml").exists() || new File(dir, "config/${dir.name}.properties").exists()) {
include ":modules.${kind}.${dir.name}"
project(":modules.${kind}.${dir.name}").projectDir = dir
}
}
}
// For projects living in extensions/ directory:
// This prevents the detection of the extensions/ directory itself
// as a project (which it is not) and avoids manual listing of projects
new File(rootDir, 'extensions').eachDir { dir ->
if (new File(dir, 'src/main/java').exists() || new File(dir, 'src/test/java').exists()) {
include ":${dir.name}"
project(":${dir.name}").projectDir = dir
}
}
// For projects living in spring-xd-starters/ directory:
// This prevents the detection of the spring-xd-starters/ directory itself
// as a project (which it is not) and avoids manual listing of projects
new File(rootDir, 'spring-xd-starters').eachDir { dir ->
if (new File(dir, 'publish-maven.gradle').exists()) {
include ":${dir.name}"
project(":${dir.name}").projectDir = dir
}
}
// For projects living in spring-xd-gradle-plugins/ directory:
// This prevents the detection of the spring-xd-gradle-plugins/ directory itself
// as a project (which it is not) and avoids manual listing of projects
new File(rootDir, 'spring-xd-gradle-plugins').eachDir { dir ->
include ":${dir.name}"
project(":${dir.name}").projectDir = dir
}