-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsettings.gradle.kts
64 lines (58 loc) · 1.29 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
59
60
61
62
63
64
pluginManagement {
includeBuild("build-logic")
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven(url = "https://jitpack.io")
maven(url = "https://oss.sonatype.org/content/repositories/snapshots")
}
}
rootProject.name = "positional"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
plugins {
id("org.jetbrains.kotlinx.kover.aggregation") version "0.9.1"
}
kover {
enableCoverage()
reports {
excludesAnnotatedBy.addAll(
"dagger.*",
"*.Generated*"
)
excludedClasses.addAll(
"dagger.*",
"hilt_aggregated_deps.*",
"*Hilt_*",
"*_Hilt*",
"*.*_*Injector*",
"*_*Factory*",
"io.trewartha.positional.BuildConfig",
)
}
}
include(
":app",
":model:compass",
":model:core",
":model:location",
":model:settings",
":model:sun",
":data:compass",
":data:location",
":data:settings",
":data:sun",
":ui:compass",
":ui:core",
":ui:design",
":ui:location",
":ui:sun",
":ui:settings"
)