generated from cortinico/kotlin-gradle-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle.kts
30 lines (24 loc) · 835 Bytes
/
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
plugins {
kotlin("jvm") version BuildPluginsVersion.KOTLIN apply false
id("org.jlleitschuh.gradle.ktlint") version BuildPluginsVersion.KTLINT
}
allprojects {
repositories {
google()
mavenCentral()
}
}
tasks.register("clean", Delete::class.java) {
delete(rootProject.buildDir)
}
tasks.register("reformatAll") {
description = "Reformat all the Kotlin Code"
dependsOn("ktlintFormat")
dependsOn(gradle.includedBuild("plugin-build").task(":plugin:ktlintFormat"))
}
tasks.register("preMerge") {
description = "Runs all the tests/verification tasks on both top level and included build."
dependsOn(":example-jvm:check")
dependsOn(gradle.includedBuild("plugin-build").task(":plugin:check"))
dependsOn(gradle.includedBuild("plugin-build").task(":plugin:validatePlugins"))
}