2024-11-13 18:58:06 +00:00
|
|
|
plugins {
|
|
|
|
kotlin("jvm")
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
jvmToolchain(11)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
val mustangVersion: String by project
|
|
|
|
|
|
|
|
val klfVersion: String by project
|
|
|
|
|
|
|
|
val assertKVersion: String by project
|
2024-11-14 16:31:12 +00:00
|
|
|
val xunitVersion: String by project
|
2024-11-15 00:31:45 +00:00
|
|
|
val logbackVersion: String by project
|
2024-11-13 18:58:06 +00:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation("org.mustangproject:library:$mustangVersion")
|
|
|
|
|
|
|
|
implementation("net.codinux.log:klf:$klfVersion")
|
|
|
|
|
|
|
|
|
|
|
|
testImplementation(kotlin("test"))
|
|
|
|
|
2024-11-15 00:31:45 +00:00
|
|
|
testImplementation("com.willowtreeapps.assertk:assertk:$assertKVersion")
|
2024-11-14 16:31:12 +00:00
|
|
|
testImplementation("org.xmlunit:xmlunit-core:$xunitVersion")
|
2024-11-15 00:31:45 +00:00
|
|
|
|
|
|
|
testImplementation("ch.qos.logback:logback-classic:$logbackVersion")
|
2024-11-13 18:58:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
tasks.test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|