-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsettings.gradle
37 lines (35 loc) · 1.28 KB
/
settings.gradle
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
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
// This snippet enables jcenter only for the dependencies described within the block.
// Once they are on maven central you can just remove it.
// https://github.com/Kotlin/kotlinx.html/issues/173#issuecomment-800504909
jcenter {
content {
includeModule("org.jetbrains.kotlinx", "kotlinx-html-jvm")
includeModule("org.jetbrains.kotlinx", "kotlinx-collections-immutable-jvm")
}
}
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
maven {
url "https://androidx.dev/storage/compose-compiler/repository/"
}
maven { url = "https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev" }
}
}
rootProject.name = "conference-app-2021"
include ':android'
include ':model'
include ':uicomponent-compose:main'
include ':uicomponent-compose:feed'
include ':uicomponent-compose:timetable2021'
include ':uicomponent-compose:notification'
include ':uicomponent-compose:other'
include ':uicomponent-compose:core'
include ':data:repository'
include ':data:api'
include ':data:db'
include ':ios-framework'
include ':checks'
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")