-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
37 lines (32 loc) · 1.36 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
rootProject.name = 'exbin-framework-plugins-java'
include ":deps"
include ":plugins:exbin-framework-language-cs_CZ"
include ":plugins:exbin-framework-language-zh_Hans"
include ":plugins:exbin-framework-language-zh_Hant"
include ":plugins:exbin-framework-language-zh_HK"
include ":plugins:exbin-framework-language-zh_TW"
include ":plugins:exbin-framework-language-ja_JP"
include ":plugins:exbin-framework-language-hi_IN"
include ":plugins:exbin-framework-language-ko_KR"
include ":plugins:exbin-framework-language-de_DE"
include ":plugins:exbin-framework-language-fr_FR"
include ":plugins:exbin-framework-language-es_ES"
include ":plugins:exbin-framework-darcula-laf"
include ":plugins:exbin-framework-flatlaf-laf"
include ":plugins:exbin-framework-vaqua-laf"
include ":plugins:exbin-framework-napkin-laf"
include ":plugins:exbin-framework-substance-laf"
include ":plugins:exbin-framework-iconset-test"
File placeholder = file("deps/_placeholder")
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
}
}
}