generated from cortinico/kotlin-gradle-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle.kts
65 lines (52 loc) · 1.61 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
import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask
import io.gitlab.arturbosch.detekt.Detekt
plugins {
kotlin("jvm") version "2.0.21" apply false
id("io.gitlab.arturbosch.detekt") version "1.23.7"
id("org.jmailen.kotlinter") version "4.5.0"
id("com.github.ben-manes.versions") version "0.51.0"
}
allprojects {
repositories {
google()
mavenCentral()
}
}
subprojects {
apply {
plugin("io.gitlab.arturbosch.detekt")
plugin("org.jmailen.kotlinter")
}
detekt {
config = rootProject.files("config/detekt/detekt.yml")
}
}
tasks.withType<Detekt>().configureEach {
reports {
html.required.set(true)
html.outputLocation.set(file("build/reports/detekt.html"))
}
}
tasks.withType<DependencyUpdatesTask> {
rejectVersionIf {
isNonStable(candidate.version)
}
}
fun isNonStable(version: String) = "^[0-9,.v-]+(-r)?$".toRegex().matches(version).not()
tasks.register("clean", Delete::class.java) {
delete(rootProject.buildDir)
}
tasks.register("reformatAll") {
description = "Reformat all the Kotlin Code"
dependsOn("formatKotlin")
dependsOn(gradle.includedBuild("plugin-build").task(":plugin:formatKotlin"))
}
tasks.register("preMerge") {
description = "Runs all the tests/verification tasks on both top level and included build."
dependsOn(":example:check")
dependsOn(gradle.includedBuild("plugin-build").task(":plugin:check"))
dependsOn(gradle.includedBuild("plugin-build").task(":plugin:validatePlugins"))
}
tasks.wrapper {
distributionType = Wrapper.DistributionType.ALL
}