-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsettings.gradle
More file actions
102 lines (96 loc) · 4.04 KB
/
settings.gradle
File metadata and controls
102 lines (96 loc) · 4.04 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
rootProject.name = 'exbin-framework-java'
include ":deps"
include ":core:exbin-framework"
include ":core:exbin-framework-basic"
include ":core:exbin-framework-addon"
include ":modules:exbin-framework-context"
include ":modules:exbin-framework-context-api"
include ":modules:exbin-framework-contribution"
include ":modules:exbin-framework-contribution-api"
include ":modules:exbin-framework-action"
include ":modules:exbin-framework-action-api"
include ":modules:exbin-framework-action-manager"
include ":modules:exbin-framework-menu"
include ":modules:exbin-framework-menu-api"
include ":modules:exbin-framework-menu-popup"
include ":modules:exbin-framework-menu-popup-api"
include ":modules:exbin-framework-toolbar"
include ":modules:exbin-framework-toolbar-api"
include ":modules:exbin-framework-statusbar"
include ":modules:exbin-framework-statusbar-api"
include ":modules:exbin-framework-sidebar"
include ":modules:exbin-framework-sidebar-api"
include ":modules:exbin-framework-ui"
include ":modules:exbin-framework-ui-api"
include ":modules:exbin-framework-ui-theme"
include ":modules:exbin-framework-ui-theme-api"
include ":modules:exbin-framework-window"
include ":modules:exbin-framework-window-api"
include ":modules:exbin-framework-frame"
include ":modules:exbin-framework-frame-api"
include ":modules:exbin-framework-document"
include ":modules:exbin-framework-document-recent"
include ":modules:exbin-framework-document-api"
include ":modules:exbin-framework-document-text"
include ":modules:exbin-framework-document-syntax"
include ":modules:exbin-framework-file"
include ":modules:exbin-framework-file-api"
include ":modules:exbin-framework-component"
include ":modules:exbin-framework-component-api"
include ":modules:exbin-framework-operation"
include ":modules:exbin-framework-operation-api"
include ":modules:exbin-framework-operation-undo"
include ":modules:exbin-framework-operation-undo-api"
include ":modules:exbin-framework-operation-manager"
include ":modules:exbin-framework-operation-manager-api"
include ":modules:exbin-framework-progress-api"
include ":modules:exbin-framework-progress"
include ":modules:exbin-framework-notification"
include ":modules:exbin-framework-notification-api"
include ":modules:exbin-framework-help"
include ":modules:exbin-framework-help-api"
include ":modules:exbin-framework-help-local"
include ":modules:exbin-framework-help-online"
include ":modules:exbin-framework-help-online-api"
include ":modules:exbin-framework-options"
include ":modules:exbin-framework-options-api"
include ":modules:exbin-framework-options-settings"
include ":modules:exbin-framework-options-settings-api"
include ":modules:exbin-framework-utils"
include ":modules:exbin-framework-about"
include ":modules:exbin-framework-about-api"
include ":modules:exbin-framework-language"
include ":modules:exbin-framework-language-api"
include ":modules:exbin-framework-addon-update"
include ":modules:exbin-framework-addon-update-api"
include ":modules:exbin-framework-addon-manager"
include ":modules:exbin-framework-addon-manager-api"
include ":modules:exbin-framework-addon-catalog"
include ":modules:exbin-framework-docking"
include ":modules:exbin-framework-docking-api"
include ":modules:exbin-framework-docking-multi"
include ":modules:exbin-framework-docking-multi-api"
include ":modules:exbin-framework-project"
include ":modules:exbin-framework-project-api"
include ":modules:exbin-framework-search"
include ":modules:exbin-framework-search-api"
include ":modules:exbin-framework-text-encoding"
include ":modules:exbin-framework-text-font"
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 = 'ExbinFrameworkJava'
}
}