mirror of https://github.com/LuSilf/recursion.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
521 B
29 lines
521 B
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile |
|
|
|
plugins { |
|
kotlin("jvm") version "1.7.20" |
|
application |
|
} |
|
|
|
group = "tech.lusilf" |
|
version = "1.0-SNAPSHOT" |
|
|
|
repositories { |
|
mavenCentral() |
|
} |
|
|
|
dependencies { |
|
testImplementation("io.kotest:kotest-runner-junit5:5.5.1") |
|
testImplementation("io.kotest:kotest-framework-datatest:5.5.1") |
|
} |
|
|
|
tasks.test { |
|
useJUnitPlatform() |
|
testLogging { |
|
events("skipped", "failed") |
|
} |
|
} |
|
|
|
tasks.withType<KotlinCompile> { |
|
kotlinOptions.jvmTarget = "17" |
|
} |