exposed-jdbc/build.gradle.kts [5:29]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - plugins { kotlin("jvm") alias(libs.plugins.dokka) } repositories { mavenCentral() } kotlin { jvmToolchain(17) } dependencies { api(project(":exposed-core")) } tasks.withType().configureEach { compilerOptions { jvmTarget.set(JvmTarget.JVM_1_8) } } tasks.withType().configureEach { targetCompatibility = "8" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - exposed-migration-core/build.gradle.kts [5:30]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - plugins { kotlin("jvm") alias(libs.plugins.dokka) } repositories { mavenCentral() } kotlin { jvmToolchain(17) } dependencies { api(project(":exposed-core")) } tasks.withType().configureEach { compilerOptions { jvmTarget.set(JvmTarget.JVM_1_8) } } tasks.withType().configureEach { targetCompatibility = "8" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -