forked from LouisCAD/kotlin-libraries-playground
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
39 lines (32 loc) · 988 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
35
36
37
38
39
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
kotlin("jvm").apply(false)
}
allprojects {
group = "playground"
repositories {
mavenLocal()
mavenCentral()
google()
jcenter()
maven("https://dl.bintray.com/kotlin/kotlin-eap/")
maven("https://kotlin.bintray.com/kotlinx/")
}
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"
}