mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
61d4ee594d
See gh-23550
21 lines
742 B
Groovy
21 lines
742 B
Groovy
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"))
|
|
optional("org.eclipse.persistence:org.eclipse.persistence.jpa")
|
|
optional("org.hibernate:hibernate-core")
|
|
optional("javax.servlet:javax.servlet-api:3.1.0")
|
|
testCompile(testFixtures(project(":spring-beans")))
|
|
testCompile(testFixtures(project(":spring-context")))
|
|
testCompile(testFixtures(project(":spring-core")))
|
|
testCompile("org.aspectj:aspectjweaver")
|
|
testCompile("org.hsqldb:hsqldb")
|
|
testRuntime("javax.xml.bind:jaxb-api")
|
|
}
|