-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
34 lines (32 loc) · 1.01 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
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
maven { url = uri("https://artifacts.itemis.cloud/repository/maven-mps/") }
mavenCentral()
}
dependencyResolutionManagement {
repositories {
mavenLocal()
gradlePluginPortal()
maven { url = uri("https://artifacts.itemis.cloud/repository/maven-mps/") }
mavenCentral()
}
versionCatalogs {
create("coreLibs") {
val modelixCoreVersion = file("gradle/libs.versions.toml").readLines()
.first { it.startsWith("modelix-core = ") }
.substringAfter('"')
.substringBefore('"')
from("org.modelix:core-version-catalog:$modelixCoreVersion")
}
}
}
}
rootProject.name = "modelix.workspaces"
include("gitui")
include("instances-manager")
include("workspace-client")
include("workspace-job")
include("workspace-manager")
include("workspaces")