-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle
More file actions
59 lines (51 loc) · 1.77 KB
/
settings.gradle
File metadata and controls
59 lines (51 loc) · 1.77 KB
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
rootProject.name = 'xbup-tools-java'
include ":deps"
include ":modules:exbin-viewer-xbup"
include ":modules:exbin-editor-xbup"
include ":modules:exbin-xbup-catalog"
include ":modules:exbin-xbup-service"
include ":modules:exbin-xbup-examples"
include ":modules:exbin-editor-wave"
include ":modules:exbin-editor-picture"
include ":modules:exbin-editor-xbup-text"
include ":modules:exbin-editor-xbup-wave"
include ":modules:exbin-editor-xbup-picture"
include ":modules:exbin-client"
include ":modules:exbin-client-api"
include ":modules:exbin-data"
include ":modules:exbin-data-api"
include ":modules:exbin-tool-browser-launcher"
include ":modules:exbin-tool-editor-launcher"
include ":modules:exbin-tool-manager-launcher"
include ":modules:exbin-tool-service-launcher"
include ":modules:exbin-tool-shell-launcher"
include ":modules:exbin-tool-example-text-editor-launcher"
include ":modules:exbin-tool-example-picture-editor-launcher"
include ":modules:exbin-tool-example-audio-editor-launcher"
include ":apps:browser"
include ":apps:editor"
include ":apps:manager"
include ":apps:service"
include ":apps:shell"
include ":apps:example-lrub1demo"
include ":apps:example-picture-editor"
include ":apps:example-audio-editor"
include ":apps:example-text-editor"
File placeholder = file("deps/.downloaded")
if (placeholder.exists()) {
placeholder.delete()
}
if (!gradle.startParameter.taskNames.contains("clean") || gradle.startParameter.projectProperties.containsKey("moduleDep")) {
File depsDir = file("deps")
// Include all downloaded dependency modules
depsDir.listFiles().each() { childFile ->
if (childFile.isDirectory() && childFile.name != ".gradle") {
include ':deps:' + childFile.name
}
}
}
gradle.allprojects {
ext {
depsRoot = 'XbupToolsJava'
}
}