threedom/threedom-kapt/build.gradle

25 lines
476 B
Groovy
Raw Permalink Normal View History

2020-05-17 11:49:57 +00:00
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.3.72'
2020-05-24 17:19:01 +00:00
id 'java'
2020-05-17 11:49:57 +00:00
}
group 'me.eater.threedom'
version '1.0-SNAPSHOT'
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation 'com.github.yanex:takenoko:0.1'
}
compileKotlin {
2020-05-24 17:19:01 +00:00
kotlinOptions.jvmTarget = "12"
2020-05-17 11:49:57 +00:00
}
compileTestKotlin {
2020-05-24 17:19:01 +00:00
kotlinOptions.jvmTarget = "12"
}
java {
sourceCompatibility = JavaVersion.VERSION_12
targetCompatibility = JavaVersion.VERSION_12
2020-05-17 11:49:57 +00:00
}