-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
54 lines (45 loc) · 1.48 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
rootProject.name = "cabe"
include(
"cabe-processor",
"cabe-gradle-plugin"
)
dependencyResolutionManagement {
versionCatalogs {
create("libs") {
plugin("foojay-resolver", "org.gradle.toolchains.foojay-resolver-convention").version("1.9.22")
plugin("versions", "com.github.ben-manes.versions").version("0.51.0")
plugin("test-logger", "com.adarshr.test-logger").version("4.0.0")
plugin("spotbugs", "com.github.spotbugs").version("6.0.21")
plugin("gradle-plugin-publish", "com.gradle.plugin-publish").version("1.2.1")
plugin("task-tree", "com.dorongold.task-tree").version("2.1.1")
version("dua3-utility", "13.0.1")
version("jspecify", "1.0.0")
library("dua3-utility", "com.dua3.utility", "utility").versionRef("dua3-utility")
library("jspecify", "org.jspecify", "jspecify").versionRef("jspecify")
}
}
}
pluginManagement {
plugins {
kotlin("jvm") version "1.9.22"
}
}
rootProject.name = "cabe"
if (System.getProperty("test") == null) {
logger.info("skipping plugin tests")
} else {
include(
"cabe-gradle-plugin-test",
"cabe-gradle-plugin-test:test-gradle-plugin",
"cabe-gradle-plugin-test:test-gradle-plugin-modular"
)
}
if (System.getProperty("examples") == null) {
logger.info("skipping examples")
} else {
include(
"examples",
"examples:hello",
"examples:hellofx"
)
}