Files
ANN-framework/build.gradle.kts
2026-03-17 21:28:37 +01:00

20 lines
355 B
Kotlin

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