2017-08-21 20:41:55 +08:00
|
|
|
description = "Spring Object/Relational Mapping"
|
|
|
|
|
|
|
|
dependencies {
|
2021-05-22 03:16:30 +08:00
|
|
|
api(project(":spring-beans"))
|
|
|
|
api(project(":spring-core"))
|
|
|
|
api(project(":spring-jdbc"))
|
|
|
|
api(project(":spring-tx"))
|
2017-08-21 20:41:55 +08:00
|
|
|
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")
|
2021-09-17 15:14:07 +08:00
|
|
|
optional("org.hibernate:hibernate-core-jakarta")
|
|
|
|
optional("jakarta.servlet:jakarta.servlet-api")
|
2022-04-21 23:01:40 +08:00
|
|
|
testImplementation(project(":spring-core-test"))
|
2021-05-22 03:16:30 +08:00
|
|
|
testImplementation(testFixtures(project(":spring-beans")))
|
|
|
|
testImplementation(testFixtures(project(":spring-context")))
|
|
|
|
testImplementation(testFixtures(project(":spring-core")))
|
|
|
|
testImplementation(testFixtures(project(":spring-web")))
|
|
|
|
testImplementation("org.aspectj:aspectjweaver")
|
|
|
|
testImplementation("org.hsqldb:hsqldb")
|
2021-09-17 15:14:07 +08:00
|
|
|
testRuntimeOnly("jakarta.xml.bind:jakarta.xml.bind-api")
|
2017-09-23 17:28:19 +08:00
|
|
|
}
|