21 lines
359 B
Groovy
21 lines
359 B
Groovy
|
|
plugins {
|
||
|
|
id 'java'
|
||
|
|
}
|
||
|
|
|
||
|
|
repositories {
|
||
|
|
mavenCentral()
|
||
|
|
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
|
||
|
|
}
|
||
|
|
|
||
|
|
dependencies {
|
||
|
|
testImplementation(platform('org.junit:junit-bom:5.10.0-SNAPSHOT'))
|
||
|
|
testImplementation('org.junit.jupiter:junit-jupiter')
|
||
|
|
}
|
||
|
|
|
||
|
|
test {
|
||
|
|
useJUnitPlatform()
|
||
|
|
testLogging {
|
||
|
|
events "passed", "skipped", "failed"
|
||
|
|
}
|
||
|
|
}
|