You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
940 B
30 lines
940 B
description = "Spring Integration Tests" |
|
|
|
apply plugin: "org.springframework.build.test-sources" |
|
|
|
dependencies { |
|
testCompile(project(":spring-aop")) |
|
testCompile(project(":spring-beans")) |
|
testCompile(project(":spring-context")) |
|
testCompile(project(":spring-core")) |
|
testCompile(testFixtures(project(":spring-beans"))) |
|
testCompile(testFixtures(project(":spring-core"))) |
|
testCompile(project(":spring-expression")) |
|
testCompile(project(":spring-jdbc")) |
|
testCompile(project(":spring-orm")) |
|
testCompile(project(":spring-test")) |
|
testCompile(project(":spring-tx")) |
|
testCompile(project(":spring-web")) |
|
testCompile("javax.inject:javax.inject") |
|
testCompile("javax.resource:javax.resource-api") |
|
testCompile("javax.servlet:javax.servlet-api") |
|
testCompile("org.aspectj:aspectjweaver") |
|
testCompile("org.hsqldb:hsqldb") |
|
testCompile("org.hibernate:hibernate-core") |
|
} |
|
|
|
normalization { |
|
runtimeClasspath { |
|
ignore "META-INF/MANIFEST.MF" |
|
} |
|
}
|
|
|