-
Notifications
You must be signed in to change notification settings - Fork 9
/
settings.gradle.kts
42 lines (35 loc) · 1.04 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
//fun prefix(prefix: String) {
// rootProject.name = "$prefix-${rootProject.name}"
// rootProject.children.forEach { it.name = "$prefix-${it.name}" }
//}
//
//fun postfix(postfix: String) {
// rootProject.name = "${rootProject.name}-$postfix"
// rootProject.children.forEach { it.name = "${it.name}-$postfix" }
//}
pluginManagement {
// repositories {
// gradlePluginPortal()
// maven("https://raw.githubusercontent.com/kotlin-graphics/mary/master")
// }
// includeBuild("../build-logic")
// includeBuild("../magik")
}
for (module in listOf("core", "awt", "gl"/*, "vk"*/, "platform")) {
include(module)
project(":$module").buildFileName = "$module.gradle.kts"
}
rootProject.name = "uno"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
//prefix("uno")
//postfix("jdk8")
gradle.rootProject {
group = "kotlin.graphics"
version = "0.7.21"
}
dependencyResolutionManagement {
repositories {
mavenCentral()
maven("https://raw.githubusercontent.com/kotlin-graphics/mary/master")
}
}