mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-05-02 12:03:41 +01:00
c91dd02905
Since we have migrated to Gradle's built-in test fixture support, the custom TestSourcesPlugin Gradle plugin is now obsolete. See gh-23550
31 lines
985 B
Groovy
31 lines
985 B
Groovy
description = "Spring Integration Tests"
|
|
|
|
dependencies {
|
|
testCompile(project(":spring-aop"))
|
|
testCompile(project(":spring-beans"))
|
|
testCompile(project(":spring-context"))
|
|
testCompile(project(":spring-core"))
|
|
testCompile(testFixtures(project(":spring-aop")))
|
|
testCompile(testFixtures(project(":spring-beans")))
|
|
testCompile(testFixtures(project(":spring-core")))
|
|
testCompile(testFixtures(project(":spring-tx")))
|
|
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"
|
|
}
|
|
}
|