15 lines
184 B
Groovy
15 lines
184 B
Groovy
|
plugins {
|
||
|
id "application"
|
||
|
}
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
testImplementation("org.junit.jupiter:junit-jupiter:5.9.1")
|
||
|
}
|
||
|
|
||
|
test {
|
||
|
useJUnitPlatform()
|
||
|
}
|