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.
21 lines
817 B
21 lines
817 B
description = "Spring Object/Relational Mapping" |
|
|
|
dependencies { |
|
api(project(":spring-beans")) |
|
api(project(":spring-core")) |
|
api(project(":spring-jdbc")) |
|
api(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") |
|
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("javax.xml.bind:jaxb-api") |
|
}
|
|
|