13 lines
153 B
Groovy
13 lines
153 B
Groovy
|
apply plugin: "java"
|
||
|
apply plugin: "eclipse"
|
||
|
apply plugin: "idea"
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
testCompile "junit:junit:4.10"
|
||
|
}
|
||
|
|