TextAdventure/build.gradle.kts
2025-10-01 07:52:30 +02:00

20 lines
354 B
Plaintext

plugins {
id("java")
}
group = "de.umarumg"
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")
}
tasks.test {
useJUnitPlatform()
}