forked from spring-projects/spring-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
spring-orm.gradle
23 lines (22 loc) · 935 Bytes
/
spring-orm.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
description = "Spring Object/Relational Mapping"
dependencies {
api(project(":spring-beans"))
api(project(":spring-core"))
api(project(":spring-jdbc"))
api(project(":spring-tx"))
compileOnly("org.graalvm.sdk:graal-sdk")
optional(project(":spring-aop"))
optional(project(":spring-context"))
optional(project(":spring-web"))
optional("jakarta.servlet:jakarta.servlet-api")
optional("org.eclipse.persistence:org.eclipse.persistence.jpa")
optional("org.hibernate:hibernate-core-jakarta")
testImplementation(project(":spring-core-test"))
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")
testRuntimeOnly("jakarta.xml.bind:jakarta.xml.bind-api")
}