import org.jetbrains.kotlin.gradle.dsl.JvmTarget plugins { application kotlin("jvm") // uses the 'old' Gradle plugin instead of the compiler plugin for now id("org.jetbrains.kotlinx.dataframe") // only mandatory if `kotlin.dataframe.add.ksp=false` in gradle.properties id("com.google.devtools.ksp") } repositories { mavenLocal() // in case of local dataframe development mavenCentral() } dependencies { // implementation("org.jetbrains.kotlinx:dataframe:X.Y.Z") implementation(project(":")) // exposed + sqlite database support implementation(libs.sqlite) implementation(libs.exposed.core) implementation(libs.exposed.kotlin.datetime) implementation(libs.exposed.jdbc) implementation(libs.exposed.json) implementation(libs.exposed.money) } kotlin { compilerOptions { jvmTarget = JvmTarget.JVM_1_8 freeCompilerArgs.add("-Xjdk-release=8") } } tasks.withType { sourceCompatibility = JavaVersion.VERSION_1_8.toString() targetCompatibility = JavaVersion.VERSION_1_8.toString() options.release.set(8) }