ee2f0f45fc
They may differ sometimes as they depend on the latest Kotlin release
27 lines
409 B
Kotlin
Vendored
27 lines
409 B
Kotlin
Vendored
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
plugins {
|
|
kotlin("jvm") version "KOTLIN_VERSION"
|
|
}
|
|
|
|
group = "me.user"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven {
|
|
url = uri("KOTLIN_REPO")
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(kotlin("test-junit"))
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnit()
|
|
}
|
|
|
|
tasks.withType<KotlinCompile>() {
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
} |