-
Notifications
You must be signed in to change notification settings - Fork 36
/
settings.gradle.kts
69 lines (55 loc) · 1.24 KB
/
settings.gradle.kts
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
val noAssembly: String? by settings
val noBenchmark: String? by settings
val noUnused: String? by settings
val noUav: String? by settings
pluginManagement.repositories {
gradlePluginPortal()
mavenCentral()
// maven("https://dl.bintray.com/kotlin/kotlin-dev")
}
fun isEnabled(profile: String?): Boolean {
val result = profile.toBoolean() || profile == ""
return result
}
include(
// should be skipped on CI, contains local experiments only
":repack",
":repack:selenium"
)
include(":parent")
include(":prover-commons")
project(":prover-commons").projectDir = file("prover-commons/module")
include(
":prover-commons:core",
":prover-commons:meta2",
":prover-commons:spark"
)
include(
// uses unstable & experimental scala features, should be modified very slowly & carefully
":parent:commons",
":parent:parsing",
":parent:core",
":parent:web",
":parent:integration",
":parent:showcase",
)
if (!isEnabled(noAssembly)) {
include(
":parent:assembly",
)
}
if (!isEnabled(noBenchmark)) {
include(
":parent:benchmark"
)
}
if (!isEnabled(noUnused)) {
include(
":parent:unused"
)
}
if (!isEnabled(noUav)) {
include(
":parent:uav"
)
}