-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
35 lines (33 loc) · 909 Bytes
/
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
pluginManagement {
includeBuild("build-logic")
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
/**
* Unable to make progress running work. There are items queued for execution but none of them can be started. ISSUE(refer to the link)
* https://issuetracker.google.com/issues/315023802
*/
gradle.startParameter.excludedTaskNames.addAll([":build-logic:convention:testClasses"])
rootProject.name = "Kestrel"
include ':app'
include ':core:ui'
include ':core:designsystem'
include ':core:data'
include ':core:navigation'
include ':feature:home'
include ':feature:animation'
include ':feature:main'
include ':processor'
include ':core:common'
include ':core:coroutine'
include ':core:model'