28 lines
765 B
Groovy
28 lines
765 B
Groovy
apply plugin: "java-library"
|
|
apply plugin: "kotlin"
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
compileKotlin {
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
kotlinOptions {
|
|
jvmTarget = kotlinJvmTarget
|
|
freeCompilerArgs += [
|
|
"-opt-in=kotlin.ExperimentalStdlibApi",
|
|
]
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: "libs", include: ["*.jar"])
|
|
//noinspection DifferentStdlibGradleVersion
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib"
|
|
|
|
testImplementation "junit:junit:$junitVersion"
|
|
testImplementation "org.jetbrains.kotlin:kotlin-test-junit:$kotlinVersion"
|
|
}
|