-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
36 lines (35 loc) · 895 Bytes
/
settings.gradle.kts
File metadata and controls
36 lines (35 loc) · 895 Bytes
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
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
includeBuild("build-logic")
}
dependencyResolutionManagement {
// repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
repositories {
google()
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
rootProject.name = "InstagramFeedPreview"
include (":app")
include(":core:datastore")
include(":data")
include(":domain")
include(":core:network")
include(":domain:repository")
include(":domain:usecase")
include(":data:repository")
include(":feature")
include(":feature:main")
include(":feature:login")
include(":feature:board")
include(":domain:model")
include(":data:datasource")
include(":data:models")
include(":core:room")
gradle.startParameter.excludedTaskNames.addAll(listOf(":build-logic:testClasses"))
include(":core:testing")