-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathsettings.gradle.kts
34 lines (31 loc) · 957 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
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
}
includeBuild("build-logic")
}
dependencyResolutionManagement {
repositories {
mavenCentral()
google()
}
}
rootProject.name = "kotlin-inject"
include(":kotlin-inject-runtime")
include(":kotlin-inject-runtime-kmp")
include(":kotlin-inject-compiler:core")
project(":kotlin-inject-compiler:core").name = "kotlin-inject-compiler-core"
include(":kotlin-inject-compiler:ksp")
project(":kotlin-inject-compiler:ksp").name = "kotlin-inject-compiler-ksp"
include(":kotlin-inject-compiler:test")
include(":ast:core")
project(":ast:core").name = "ast-core"
include(":ast:ksp")
project(":ast:ksp").name = "ast-ksp"
include(":integration-tests:ksp")
include(":integration-tests:ksp1")
include(":integration-tests:module")
include(":integration-tests:ksp-companion")
include(":integration-tests:ksp1-companion")
include(":integration-tests:jmh")