mirror of
https://github.com/smyalygames/checklist-tester.git
synced 2025-05-18 22:44:11 +02:00
24 lines
332 B
Plaintext
24 lines
332 B
Plaintext
plugins {
|
|
kotlin("jvm") version "1.9.23"
|
|
}
|
|
|
|
group = "io.anthonyberg"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("dk.au.ece.vdmj:vdmj:4.5.0")
|
|
testImplementation("org.jetbrains.kotlin:kotlin-test")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain(21)
|
|
}
|