KotlinRay/build.gradle.kts

19 lines
228 B
Text
Raw Normal View History

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