-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
58 lines (54 loc) · 1.75 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
55
56
57
58
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
repositories {
mavenCentral()
google()
gradlePluginPortal()
maven("https://dl.bintray.com/kotlin/kotlin-eap")
maven("https://plugins.gradle.org/m2/")
maven("https://s01.oss.sonatype.org/content/repositories/snapshots")
}
}
dependencyResolutionManagement {
@Suppress("UnstableApiUsage")
repositories {
mavenCentral()
google()
gradlePluginPortal()
maven("https://dl.bintray.com/kotlin/kotlin-eap")
maven("https://plugins.gradle.org/m2/")
maven("https://s01.oss.sonatype.org/content/repositories/snapshots")
}
}
rootProject.name = "PetFinder-Showcase"
include(
":petsearch-shared",
":petsearch-shared:Shared",
":petsearch-shared:resources",
":petsearch-shared:core",
":petsearch-shared:core:entity",
":petsearch-shared:core:test",
":petsearch-shared:core:util",
":petsearch-shared:data",
":petsearch-shared:data:infra",
":petsearch-shared:data:infra:network",
":petsearch-shared:data:infra:cache",
":petsearch-shared:data:infra:preferences",
":petsearch-shared:data:source",
":petsearch-shared:data:repository",
":petsearch-shared:domain",
":petsearch-shared:domain:home",
":petsearch-shared:domain:petdetail",
":petsearch-shared:ui",
":petsearch-shared:ui:home",
":petsearch-shared:ui:petdetail",
":petsearch-android",
":petsearch-android:app",
":petsearch-android:activity",
":petsearch-android:common",
":petsearch-android:common:components",
":petsearch-android:common:compose",
":petsearch-android:features",
":petsearch-android:features:home",
":petsearch-android:features:petdetail"
)