-
Notifications
You must be signed in to change notification settings - Fork 43
/
settings.gradle.kts
47 lines (36 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
35
36
37
38
39
40
41
42
43
44
45
46
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
}
}
dependencyResolutionManagement {
versionCatalogs {
create("libs") {
from(files("gradle/projects.libs.versions.toml"))
val kotlinVersion: String? by settings
kotlinVersion?.let { version("kotlin", it) }
}
}
repositories {
mavenLocal {
content {
includeGroup("io.arrow-kt")
}
}
mavenCentral()
maven(url = "https://oss.sonatype.org/content/repositories/snapshots/")
}
}
rootProject.name = "arrow-meta-workspace"
// Libraries
include(":arrow-meta")
project(":arrow-meta").projectDir = File("libs/arrow-meta")
include(":arrow-meta-test")
project(":arrow-meta-test").projectDir = File("libs/meta-test")
include(":arrow-gradle-plugin-commons")
project(":arrow-gradle-plugin-commons").projectDir = File("libs/gradle-plugin-commons")
// Docs
include(":arrow-meta-docs")
project(":arrow-meta-docs").projectDir = File("docs")