2017-08-21 20:41:55 +08:00
|
|
|
description = "Spring Object/Relational Mapping"
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile(project(":spring-beans"))
|
|
|
|
compile(project(":spring-core"))
|
|
|
|
compile(project(":spring-jdbc"))
|
|
|
|
compile(project(":spring-tx"))
|
|
|
|
optional(project(":spring-aop"))
|
|
|
|
optional(project(":spring-context"))
|
|
|
|
optional(project(":spring-web"))
|
2019-08-27 03:13:12 +08:00
|
|
|
optional("org.eclipse.persistence:org.eclipse.persistence.jpa")
|
|
|
|
optional("org.hibernate:hibernate-core")
|
2017-08-21 20:41:55 +08:00
|
|
|
optional("javax.servlet:javax.servlet-api:3.1.0")
|
2019-12-29 00:13:39 +08:00
|
|
|
testCompile(testFixtures(project(":spring-beans")))
|
|
|
|
testCompile(testFixtures(project(":spring-context")))
|
2019-12-28 18:44:40 +08:00
|
|
|
testCompile(testFixtures(project(":spring-core")))
|
2019-12-31 21:58:51 +08:00
|
|
|
testCompile(testFixtures(project(":spring-web")))
|
2019-08-27 03:13:12 +08:00
|
|
|
testCompile("org.aspectj:aspectjweaver")
|
|
|
|
testCompile("org.hsqldb:hsqldb")
|
|
|
|
testRuntime("javax.xml.bind:jaxb-api")
|
2017-09-23 17:28:19 +08:00
|
|
|
}
|