forked from LouisCAD/kotlin-libraries-playground
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
73 lines (61 loc) · 1.94 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
66
67
68
69
70
71
72
73
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask
buildscript {
val kotlin_version by extra("1.5.10")
repositories {
google()
mavenCentral()
}
dependencies {
classpath("com.android.tools.build:gradle:_")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:_")
}
}
plugins {
kotlin("jvm").apply(false)
id("com.github.ben-manes.versions")
}
allprojects {
group = "playground"
repositories {
mavenLocal()
mavenCentral()
google()
jcenter()
}
tasks.withType<KotlinCompile> {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions.freeCompilerArgs += "-Xopt-in=kotlin.RequiresOptIn"
}
}
/**
* How do I setup GitHub Actions for my Gradle or Android project?
* https://dev.to/jmfayard/how-do-i-setup-github-actions-for-my-gradle-or-android-project-3eal
*/
tasks.register("runOnGitHub") {
dependsOn(":kotlin-jvm:run")
group = "custom"
description = "$ ./gradlew runOnGitHub # runs on GitHub Action"
}
tasks.register<DefaultTask>("hello") {
group = "Custom"
description = "Minimal task that do nothing. Useful to debug a failing build"
}
/**
* The Gradle Versions Plugin is another Gradle plugin to discover dependency updates
* plugins.id("com.github.ben-manes.versions")
* Run it with $ ./gradlew --scan dependencyUpdates
* https://github.com/ben-manes/gradle-versions-plugin
* **/
tasks.named("dependencyUpdates", DependencyUpdatesTask::class.java).configure {
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()
}
rejectVersionIf {
isNonStable(candidate.version)
}
checkConstraints = true
}