kotlin-matulev3/build.gradle.kts

21 lines
259 B
Plaintext
Raw Normal View History

2025-01-20 10:37:22 +00:00
plugins {
kotlin("jvm") version "2.0.21"
}
group = "org.example"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation(kotlin("test"))
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(21)
}