-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle.kts
49 lines (44 loc) · 1.12 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
import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask
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.asProvider().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)
filter {
exclude("**/generated/**")
include("**/kotlin/**")
}
}
detekt {
config = rootProject.files("config/detekt/detekt.yml")
}
}
tasks {
withType<DependencyUpdatesTask>().configureEach {
rejectVersionIf {
candidate.version.isStableVersion().not()
}
}
}