-
Notifications
You must be signed in to change notification settings - Fork 28
/
settings.gradle.kts
47 lines (37 loc) · 973 Bytes
/
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
plugins {
id("de.fayard.refreshVersions").version("0.60.5")
}
refreshVersions {
enableBuildSrcLibs()
rejectVersionIf {
candidate.stabilityLevel.isLessStableThan(current.stabilityLevel)
}
}
rootProject.name = "forkhandles"
fun String.includeSubModule(name: String) {
val projectName = "$this-${name.replace(':', '-')}"
include(":$projectName")
project(":$projectName").projectDir = File("$this/${name.replace(':', '/')}")
}
fun String.includeModule(dir: String) {
include(":$this")
project(":$this").projectDir = File("$this/$dir")
}
include("forkhandles-bom")
include("bunting4k")
include("data4k")
include("fabrikate4k")
include("mock4k")
include("parser4k")
include("partial4k")
"result4k".apply {
includeModule("core")
includeSubModule("kotest")
includeSubModule("hamkrest")
includeSubModule("strikt")
}
include("ropes4k")
include("state4k")
include("time4k")
include("tuples4k")
include("values4k")