-
Notifications
You must be signed in to change notification settings - Fork 50
/
settings.gradle.kts
33 lines (31 loc) · 1018 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
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
}
dependencyResolutionManagement {
// https://youtrack.jetbrains.com/issue/KT-51379
// repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven("https://maven.mozilla.org/maven2/")
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
maven("https://jitpack.io")
// TODO: delete when we have all libs in mavenCentral
maven("https://maven.pkg.jetbrains.space/kotlin/p/wasm/experimental")
}
}
rootProject.name = "precompose"
include(":precompose")
include(":precompose-molecule")
include(":sample:todo:android")
include(":sample:todo:desktop")
include(":sample:todo:common")
include(":sample:todo:ios")
// include(":sample:todo:macos")
include(":sample:todo:js")
include(":sample:molecule:composeApp")