-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsettings.gradle.kts
36 lines (32 loc) · 921 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
35
36
rootProject.name = "NoteDelight"
include(":core:domain")
include(":core:data:db-sqldelight")
//include(":core:data:db-room")
include(":core:presentation")
include(":core:test")
include(":shared")
include(":jvm-compose-test")
include(":android-compose-app")
include(":desktop-compose-app")
include(":ios-compose-kit")
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
google()
maven(url = "https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
includeBuild("build-logic")
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.9.0"
}
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
maven(url = "https://jitpack.io")
maven(url = "https://s3.amazonaws.com/repo.commonsware.com")
maven(url = "https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
}