20 lines
309 B
Groovy
20 lines
309 B
Groovy
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()
|
|
} |