forked from Ivy-Apps/ivy-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
42 lines (38 loc) · 1.07 KB
/
build.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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
// Run with:
// ./gradlew detekt // Simple report in the console
// ./gradlew detektFormat // To check with enabled auto-correction
id("ivy.detekt")
id("com.jraska.module.graph.assertion")
alias(libs.plugins.gradleWrapperUpgrade)
alias(libs.plugins.koverPlugin)
}
subprojects {
apply(plugin = "org.jetbrains.kotlinx.kover")
kover {
reports {
filters {
excludes {
classes(
"*Activity",
"*Activity\$*",
"*.BuildConfig",
"dagger.hilt.*",
"hilt_aggregated_deps.*",
"*.Hilt_*"
)
annotatedBy("@Composable")
}
}
}
}
}
wrapperUpgrade {
gradle {
create("ivyWallet") {
repo.set("Ivy-Apps/ivy-wallet")
baseBranch.set("main")
}
}
}