import org.jetbrains.kotlin.gradle.tasks.KotlinCompile plugins { kotlin("jvm") application } repositories { mavenCentral() } group = "de.pheerai" 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")) testImplementation("io.kotest:kotest-runner-junit5-jvm:4.0.5") testImplementation("io.kotest:kotest-assertions-core-jvm:4.0.5") } tasks { withType().configureEach { kotlinOptions { freeCompilerArgs = listOf("-XXLanguage:+InlineClasses") } } test { useJUnitPlatform() } }