HHS/LF5-JavaShit/kotlin/build.gradle.kts
2024-11-28 18:21:59 +01:00

18 lines
No EOL
227 B
Text

plugins {
kotlin("jvm") version "2.0.21"
}
group = "org.example"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation(kotlin("test"))
}
tasks.test {
useJUnitPlatform()
}