24 lines
371 B
Groovy
24 lines
371 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'de.churl'
|
|
version '1.0-SNAPSHOT'
|
|
sourceCompatibility = '14'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(platform('org.junit:junit-bom:5.7.0'))
|
|
testImplementation('org.junit.jupiter:junit-jupiter')
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
testLogging {
|
|
events "passed", "skipped", "failed"
|
|
}
|
|
}
|