import org.jetbrains.kotlin.gradle.tasks.KotlinCompile plugins { kotlin("jvm") version "1.4.30" } group = "dev.fyloz.colorrecipesexplorer" version = "1.0" repositories { mavenCentral() } dependencies { implementation("org.liquibase:liquibase-core:4.3.1") testImplementation(kotlin("test-junit5")) testImplementation("org.junit.jupiter:junit-jupiter-api:5.6.0") testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.6.0") } tasks.test { useJUnitPlatform() } tasks.withType() { kotlinOptions.jvmTarget = "11" }