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.

19 lines
356 B
Groovy

plugins {
id 'org.jetbrains.kotlin.jvm' version '1.3.72'
}
group 'me.eater.threedom'
version '1.0-SNAPSHOT'
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation 'com.github.yanex:takenoko:0.1'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}