Files
processing4/app/utils/build.gradle.kts
2025-08-01 12:00:13 -07:00

16 lines
241 B
Kotlin

plugins {
id("java")
}
repositories {
mavenCentral()
}
dependencies {
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
}
tasks.test {
useJUnitPlatform()
}