initial working build!

This commit is contained in:
rattatwinko
2025-05-23 19:08:56 +02:00
commit f2eb9be5d7
7 changed files with 1202 additions and 0 deletions

20
build.gradle.kts Normal file
View File

@@ -0,0 +1,20 @@
plugins {
id("java")
}
group = "org.jdetect"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
implementation("org.openpnp:opencv:4.5.1-2")
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
}
tasks.test {
useJUnitPlatform()
}