14 lines
251 B
Groovy
14 lines
251 B
Groovy
|
apply plugin: "java"
|
||
|
apply plugin: "eclipse"
|
||
|
apply plugin: "idea"
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
testCompile "junit:junit:4.10"
|
||
|
testCompile "org.easytesting:fest-assert-core:2.0M10"
|
||
|
testCompile "com.google.guava:guava:16+"
|
||
|
}
|