mirror of
https://github.com/jlengrand/DailyCodingProblems.git
synced 2026-03-10 08:11:19 +00:00
29 lines
415 B
Kotlin
29 lines
415 B
Kotlin
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
plugins {
|
|
kotlin("jvm") version "1.5.21"
|
|
application
|
|
}
|
|
|
|
group = "me.julien"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(kotlin("test"))
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
tasks.withType<KotlinCompile>() {
|
|
kotlinOptions.jvmTarget = "11"
|
|
}
|
|
|
|
application {
|
|
mainClassName = "MainKt"
|
|
} |