2019-07-23 17:28:31 +08:00
|
|
|
description = "Spring Integration Tests"
|
|
|
|
|
2019-08-21 02:26:43 +08:00
|
|
|
apply plugin: "org.springframework.build.test-sources"
|
|
|
|
|
2019-07-23 17:28:31 +08:00
|
|
|
dependencies {
|
|
|
|
testCompile(project(":spring-aop"))
|
|
|
|
testCompile(project(":spring-beans"))
|
|
|
|
testCompile(project(":spring-context"))
|
|
|
|
testCompile(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:1")
|
|
|
|
testCompile("javax.resource:javax.resource-api:1.7.1")
|
|
|
|
testCompile("javax.servlet:javax.servlet-api:4.0.1")
|
|
|
|
testCompile("org.aspectj:aspectjweaver:${aspectjVersion}")
|
|
|
|
testCompile("org.hsqldb:hsqldb:${hsqldbVersion}")
|
|
|
|
testCompile("org.hibernate:hibernate-core:5.1.17.Final")
|
2019-08-21 21:24:03 +08:00
|
|
|
}
|