1
0
Fork 0
MinestomGameJam/build.gradle.kts
2024-08-10 14:51:12 +02:00

19 lines
No EOL
293 B
Kotlin

plugins {
id("java")
}
group = "dev.celestialfox"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation(platform("org.junit:junit-bom:5.9.1"))
testImplementation("org.junit.jupiter:junit-jupiter")
}
tasks.test {
useJUnitPlatform()
}