rcdbquery/build.gradle.kts

34 lines
597 B
Plaintext
Raw Normal View History

import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
2020-04-04 13:37:27 +02:00
plugins {
kotlin("jvm")
application
2020-04-04 13:37:27 +02:00
}
2020-04-04 13:37:27 +02:00
repositories {
mavenCentral()
}
group = "de.pheerai"
2020-04-04 13:37:27 +02:00
version = "0.0.1"
java {
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_11
}
application {
mainClassName = "de.pheerai.rcdbquery.SampleKt"
}
dependencies {
implementation(kotlin("stdlib-jdk8"))
testImplementation(kotlin("test-junit"))
}
val compileKotlin: KotlinCompile by tasks
compileKotlin.kotlinOptions {
freeCompilerArgs = listOf("-XXLanguage:+InlineClasses")
2020-04-04 13:37:27 +02:00
}