-
Notifications
You must be signed in to change notification settings - Fork 18
/
settings.gradle
48 lines (42 loc) · 1.13 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
include 'lilith'
include 'lilith-conditions'
include 'lilith-constants'
include 'lilith-engine'
include 'lilith-json-logging'
include 'lilith-prefs'
include 'lilith-sender'
include 'lilith-sounds'
include 'lilith-xml-logging'
include 'slf4j'
include 'tracing'
def ignores = new HashSet<String>()
ignores.add('xml-schema')
ignores.add('target')
new File(rootDir, "lilith-data").eachDir { dir ->
if(!ignores.contains(dir.name)) {
def moduleName = "${dir.parentFile.name}-${dir.name}"
include "${moduleName}"
project(":${moduleName}").projectDir = dir
}
}
new File(rootDir, 'jul').eachDir { dir ->
if(!ignores.contains(dir.name)) {
def moduleName = "${dir.name}"
include "${moduleName}"
project(":${moduleName}").projectDir = dir
}
}
new File(rootDir, 'log4j').eachDir { dir ->
if(!ignores.contains(dir.name)) {
def moduleName = "${dir.name}"
include "${moduleName}"
project(":${moduleName}").projectDir = dir
}
}
new File(rootDir, "logback").eachDir { dir ->
if(!ignores.contains(dir.name)) {
def moduleName = "${dir.parentFile.name}-${dir.name}"
include "${moduleName}"
project(":${moduleName}").projectDir = dir
}
}