You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
401 B
Groovy

plugins {
id 'org.jetbrains.kotlin.jvm' version '1.3.61'
}
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
sourceSets {
main {
kotlin {
srcDirs 'src'
}
}
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}