20 lines
342 B
Groovy
20 lines
342 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'idea' // optional (to generate IntelliJ IDEA project files)
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(platform('org.junit:junit-bom:5.10.0'))
|
|
testImplementation('org.junit.jupiter:junit-jupiter')
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
testLogging {
|
|
events "passed", "skipped", "failed"
|
|
}
|
|
}
|