chatrum/build.gradle.kts

18 lines
234 B
Text
Raw Normal View History

2024-11-06 11:30:43 +01:00
plugins {
kotlin("jvm") version "2.0.20"
}
group = "org.thundernetwork"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation(kotlin("test"))
}
tasks.test {
useJUnitPlatform()
}