1
0
forked from numbers/Ornot
Files
Ornot/build.gradle.kts
2025-12-19 16:58:21 -06:00

20 lines
361 B
Kotlin

plugins {
id("java")
}
group = "com.softwaresmyth"
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()
}