plugins { kotlin("jvm") version "1.9.20" application } group = "org.example" version = "1.0-SNAPSHOT" repositories { mavenCentral() } dependencies { implementation("org.bytedeco:javacv-platform:1.5.9") testImplementation(kotlin("test")) } tasks.test { useJUnitPlatform() } kotlin { jvmToolchain(8) } application { mainClass.set("MainKt") }