rcdbquery/build.gradle.kts

40 lines
803 B
Plaintext
Raw Normal View History

import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
2020-04-04 13:37:27 +02:00
plugins {
kotlin("jvm")
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
}
dependencies {
implementation(kotlin("stdlib-jdk8"))
2020-05-01 15:44:45 +02:00
testImplementation("io.kotest:kotest-runner-junit5-jvm:4.0.5")
testImplementation("io.kotest:kotest-assertions-core-jvm:4.0.5")
}
2020-05-01 15:44:45 +02:00
tasks {
withType<KotlinCompile>().configureEach {
kotlinOptions {
freeCompilerArgs = listOf("-XXLanguage:+InlineClasses")
apiVersion = "1.3"
languageVersion = "1.3"
jvmTarget = JavaVersion.VERSION_11.toString()
2020-05-01 15:44:45 +02:00
}
}
test {
useJUnitPlatform()
}
2020-04-04 13:37:27 +02:00
}