19 lines
287 B
Plaintext
19 lines
287 B
Plaintext
|
plugins {
|
||
|
id("java")
|
||
|
}
|
||
|
|
||
|
group = "nl.mziesel"
|
||
|
version = "1.0-SNAPSHOT"
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
testImplementation(platform("org.junit:junit-bom:5.9.1"))
|
||
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
||
|
}
|
||
|
|
||
|
tasks.test {
|
||
|
useJUnitPlatform()
|
||
|
}
|