22 lines
404 B
Groovy
22 lines
404 B
Groovy
|
|
plugins {
|
||
|
|
id 'java'
|
||
|
|
id 'eclipse' // optional (to generate Eclipse project files)
|
||
|
|
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"
|
||
|
|
}
|
||
|
|
}
|