18 lines
255 B
Groovy
18 lines
255 B
Groovy
|
apply plugin: "java"
|
||
|
apply plugin: "eclipse"
|
||
|
apply plugin: "idea"
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
testCompile "junit:junit:4.12"
|
||
|
}
|
||
|
test {
|
||
|
testLogging {
|
||
|
exceptionFormat = 'full'
|
||
|
events = ["passed", "failed", "skipped"]
|
||
|
}
|
||
|
}
|