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"))
|
2018-06-28 20:52:35 +08:00
|
|
|
optional("org.eclipse.persistence:org.eclipse.persistence.jpa:2.7.2")
|
2018-08-04 05:18:10 +08:00
|
|
|
optional("org.hibernate:hibernate-core:5.3.4.Final")
|
2017-08-21 20:41:55 +08:00
|
|
|
optional("javax.servlet:javax.servlet-api:3.1.0")
|
|
|
|
testCompile("org.aspectj:aspectjweaver:${aspectjVersion}")
|
|
|
|
testCompile("org.hsqldb:hsqldb:${hsqldbVersion}")
|
2017-09-24 23:18:21 +08:00
|
|
|
testRuntime("javax.xml.bind:jaxb-api:2.3.0")
|
2017-09-23 17:28:19 +08:00
|
|
|
}
|