generated from cortinico/kotlin-android-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
83 lines (72 loc) · 2.01 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask
import io.gitlab.arturbosch.detekt.Detekt
import org.jlleitschuh.gradle.ktlint.reporter.ReporterType
@Suppress("DSL_SCOPE_VIOLATION")
plugins {
id("com.android.application") apply false
id("com.android.library") apply false
kotlin("android") apply false
alias(libs.plugins.detekt)
alias(libs.plugins.ktlint)
alias(libs.plugins.versions)
cleanup
base
}
allprojects {
group = PUBLISHING_GROUP
}
val ktlintVersion = libs.versions.ktlint.get()
subprojects {
apply {
plugin("io.gitlab.arturbosch.detekt")
plugin("org.jlleitschuh.gradle.ktlint")
}
ktlint {
debug.set(false)
version.set(ktlintVersion)
verbose.set(true)
android.set(false)
outputToConsole.set(true)
ignoreFailures.set(false)
enableExperimentalRules.set(true)
ignoreFailures = true
filter {
exclude("**/generated/**")
include("**/kotlin/**")
}
reporters {
reporter(ReporterType.PLAIN)
reporter(ReporterType.HTML)
}
}
detekt {
config = rootProject.files("config/detekt/detekt.yml")
}
}
task<Exec>("openReport") {
group = "detekt"
val reportLocation = rootDir.absolutePath + "/app/build/reports/detekt/detekt.html"
commandLine("cmd", "/c", "start ${reportLocation.replace("\\", "/")}")
}
task<Exec>("openDetekt") {
group = "detekt"
val reportLocation = rootDir.absolutePath + "/app/build/reports/detekt/"
commandLine("cmd", "/c", "start ${reportLocation.replace("\\", "/")}")
}
tasks {
withType<DependencyUpdatesTask>().configureEach {
rejectVersionIf {
candidate.version.isStableVersion().not()
}
}
withType<Detekt>().configureEach {
// openReport()
htmlReportFile.isPresent
reports {
html {
required.set(true)
}
}
dependsOn("openReport")
}
}