You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
990 B
24 lines
990 B
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("jakarta.validation:jakarta.validation-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") |
|
}
|
|
|