-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathsettings.gradle
40 lines (30 loc) · 1003 Bytes
/
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
include 'develnext-designer';
include 'jphp-desktop-hotkey-ext',
'dn-app-framework',
'develnext';
include 'develnext-doc';
include 'develnext-lexer';
include 'develnext-launcher';
include 'jphp-gui-richtext-ext';
include 'jphp-gui-tabs-ext';
// platforms
file("$rootDir.path/platforms").listFiles().each { file ->
if (file.directory && file.name.startsWith("develnext-") && file.name.endsWith("-platform")) {
println "include 'platforms/$file.name'"
include "platforms/$file.name"
}
}
// bundles
file("$rootDir.path/bundles").listFiles().each { file ->
if (file.directory && file.name.endsWith("-bundle")) {
println "include 'bundles/$file.name'"
include "bundles/$file.name"
}
}
// stubs
file("$rootDir.path/stubs").listFiles().each { file ->
if (file.directory && file.name.endsWith("-stub")) {
println "include 'stubs/$file.name'"
include "stubs/$file.name"
}
}