plugins { id "application" } repositories { mavenCentral() } dependencies { def junitVersion = "5.9.1" testImplementation("org.junit.jupiter:junit-jupiter:${junitVersion}") testImplementation("org.junit.jupiter:junit-jupiter-params:${junitVersion}") } test { useJUnitPlatform() }