20 lines
324 B
Groovy
20 lines
324 B
Groovy
subprojects {
|
|
apply plugin: 'java'
|
|
apply plugin: 'eclipse'
|
|
apply plugin: 'idea'
|
|
|
|
repositories {
|
|
maven { url 'http://repo.spring.io/libs-release' }
|
|
}
|
|
|
|
dependencies {
|
|
testCompile("junit:junit:4.10")
|
|
testCompile("org.easymock:easymock:3.1")
|
|
}
|
|
|
|
}
|
|
|
|
task wrapper(type: Wrapper) {
|
|
gradleVersion = '1.8'
|
|
}
|