Files
ANN-framework/build.gradle.kts
2026-03-26 21:21:31 +01:00

22 lines
405 B
Kotlin

plugins {
id("java")
}
group = "be.naaturel"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
implementation("org.jfree:jfreechart:1.5.4")
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()
}