-
Notifications
You must be signed in to change notification settings - Fork 487
/
Copy pathbuild.gradle
33 lines (26 loc) · 1.08 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
dependencies {
compile project(':spring-ldap-ldif-core'),
"commons-lang:commons-lang:$commonsLangVersion"
compile("org.springframework.batch:spring-batch-infrastructure:$springBatchVersion") {
exclude group: "org.springframework", module: "spring-core"
exclude group: "org.springframework", module: "spring-context"
exclude group: "org.springframework", module: "spring-aop"
}
testCompile "junit:junit:$junitVersion",
"org.springframework:spring-context:$springVersion",
"org.springframework:spring-aop:$springVersion",
"org.springframework:spring-orm:${springVersion}",
"org.springframework:spring-test:$springVersion",
"org.assertj:assertj-core:$assertjVersion"
testCompile("org.springframework.batch:spring-batch-test:$springBatchVersion") {
exclude group: "org.springframework", module: "spring-test"
}
}
test {
exclude '**/Batch22*.class'
}
project.tasks.withType(Test).all { t->
if(name.startsWith('springIo')) {
exclude '**/Batch20*.class'
}
}