falloutlonesomeroad/build.gradle.kts

21 lines
No EOL
402 B
Kotlin

plugins {
id("java")
}
group = "net.halfheart"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
implementation("org.json:json:20231013")
}
tasks.test {
useJUnitPlatform()
}