44 lines
1.1 KiB
Groovy
44 lines
1.1 KiB
Groovy
apply plugin: 'java'
|
|
apply plugin: 'eclipse'
|
|
|
|
allprojects {
|
|
apply plugin: 'java'
|
|
sourceCompatibility = 1.6
|
|
targetCompatibility = 1.6
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
resources.srcDirs = ["src/main/java","src/main/resources"]
|
|
}
|
|
test {
|
|
resources.srcDirs = ["src/main/java", "src/main/resources", "src/test/resources"]
|
|
}
|
|
}
|
|
|
|
configurations {
|
|
compile
|
|
}
|
|
|
|
test {
|
|
testLogging {
|
|
events 'started', 'passed'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
testCompile('junit:junit:4.11')
|
|
testCompile('org.mockito:mockito-all:1.10.19')
|
|
testCompile group: 'org.springframework', name: 'spring-test', version: '4.2.6.RELEASE'
|
|
testCompile group: 'org.springframework', name: 'spring-core', version: '4.2.6.RELEASE'
|
|
testCompile group: 'org.springframework', name: 'spring-beans', version: '4.2.6.RELEASE'
|
|
testCompile group: 'org.springframework', name: 'spring-context', version: '4.2.6.RELEASE'
|
|
testCompile group: 'javax.inject', name: 'javax.inject', version: '1'
|
|
|
|
testRuntime('junit:junit:4.11')
|
|
}
|