Database-Manager/build.gradle.kts

29 lines
567 B
Plaintext

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<KotlinCompile>() {
kotlinOptions.jvmTarget = "11"
}