-
Notifications
You must be signed in to change notification settings - Fork 201
/
settings.gradle.kts
54 lines (54 loc) · 1.39 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
pluginManagement {
includeBuild("build-logic")
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.PREFER_PROJECT)
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
maven {
url = uri("https://maven.pkg.jetbrains.space/public/p/compose/dev/")
}
maven { url = uri("https://jitpack.io") }
}
}
rootProject.name = "conference-app-2024"
include(
":app-android",
":app-ios-shared",
":feature:main",
":feature:sessions",
":feature:contributors",
":feature:eventmap",
":feature:profilecard",
":feature:about",
":feature:sponsors",
":feature:staff",
":feature:settings",
":feature:favorites",
":core:designsystem",
":core:data",
":core:model",
":core:droidkaigiui",
":core:testing",
":core:testing-manifest",
":core:common",
)