plugins { java } dependencies { compileOnly(project(":scalabot-extension")) testImplementation("org.junit.jupiter:junit-jupiter-api:5.8.2") testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine") } tasks.getByName("test") { useJUnitPlatform() } tasks.withType { options { encoding = "UTF-8" } }