generated from cortinico/kotlin-gradle-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
34 lines (27 loc) · 935 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
31
32
33
34
import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask
plugins {
kotlin("jvm") version BuildPluginsVersion.KOTLIN apply false
id("com.github.ben-manes.versions") version BuildPluginsVersion.VERSIONS_PLUGIN
}
allprojects {
repositories {
google()
mavenCentral()
jcenter()
}
}
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("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"))
}