35 lines
558 B
Plaintext
35 lines
558 B
Plaintext
plugins {
|
|
id("application")
|
|
id("java")
|
|
kotlin("jvm") version "1.9.22"
|
|
}
|
|
|
|
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()
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
resources {
|
|
srcDir("src/main/resources")
|
|
}
|
|
}
|
|
}
|
|
|
|
application {
|
|
mainClass.set("org.jdetect.MainApp")
|
|
}
|