-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
build.gradle.kts
50 lines (41 loc) · 1.24 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
import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask
plugins {
alias(libs.plugins.kotlin.jvm) apply false
alias(libs.plugins.dokka) apply false
alias(libs.plugins.pluginPublish) apply false
alias(libs.plugins.mavenPublish) apply false
alias(libs.plugins.versions)
}
val GROUP: String by project
val VERSION_NAME: String by project
allprojects {
repositories {
google()
mavenCentral()
}
tasks.withType(JavaCompile::class.java) {
sourceCompatibility = "1.8"
targetCompatibility = "1.8"
}
group = GROUP
version = VERSION_NAME
}
tasks.register("clean", Delete::class.java) {
delete(rootProject.buildDir)
}
tasks.wrapper {
gradleVersion = libs.versions.gradle.get()
distributionType = Wrapper.DistributionType.ALL
}
// https://github.com/ben-manes/gradle-versions-plugin
fun isNonStable(version: String): Boolean {
val stableKeyword = listOf("RELEASE", "FINAL", "GA").any { version.toUpperCase().contains(it) }
val regex = "^[0-9,.v-]+(-r)?$".toRegex()
val isStable = stableKeyword || regex.matches(version)
return isStable.not()
}
tasks.withType<DependencyUpdatesTask> {
rejectVersionIf {
isNonStable(candidate.version)
}
}