-
Notifications
You must be signed in to change notification settings - Fork 3
/
settings.gradle.kts
39 lines (37 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
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.PREFER_PROJECT)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "koject"
include(":koject-core")
include(":koject-test")
include(":processor:common")
include(":processor:app")
include(":processor:lib")
include(":android:koject-android-core")
include(":android:koject-android-activity")
include(":android:koject-android-fragment")
include(":android:koject-android-viewmodel")
include(":compose:koject-compose-core")
include(":compose:koject-compose-viewmodel")
include(":integration-test:app")
include(":integration-test:lib1")
include(":integration-test:lib2")
include(":integration-test:lib3")
include(":integration-test:android")
include(":integration-test:compose")
include(":examples:kmm:android")
include(":examples:kmm:shared")
include(":examples:kmm:data")
include(":examples:kmm:infrastructure")
include(":examples:kmm:ui")