-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
43 lines (43 loc) · 1.1 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
pluginManagement {
includeBuild("plugins")
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "BoxBox"
gradle.startParameter.excludedTaskNames.addAll(listOf(":plugins:testClasses"))
include(":app")
include(":core:model")
include(":core:ui")
include(":core:preferences")
include(":core:database")
include(":core:network")
include(":core:common")
include(":core:testing")
include(":core:alarm")
include(":core:notification")
include(":data:countries")
include(":data:driverstandings")
include(":data:driverimages")
include(":data:constructorstandings")
include(":data:constructorimages")
include(":data:constructorcolors")
include(":data:races")
include(":data:circuitimages")
include(":data:raceresults")
include(":data:sprintresults")
include(":feature:standings")
include(":feature:settings")
include(":feature:races")
include(":feature:raceresults")
include(":feature:home")
include(":domain")