This repository has been archived on 2025-05-28. You can view files and clone it, but cannot push or open issues or pull requests.
Files
MultiJDetect/build.gradle.kts
2025-05-25 14:14:23 +02:00

20 lines
338 B
Plaintext

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()
}