Upgrades many dependency declarations; removes old EJB 2.x support and outdated Servlet-based integrations (Commons FileUpload, FreeMarker JSP support, Tiles). Closes gh-22093 Closes gh-25354 Closes gh-26185 Closes gh-27423 See gh-27424
22 lines
843 B
Groovy
22 lines
843 B
Groovy
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-jakarta")
|
|
optional("jakarta.servlet:jakarta.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("jakarta.xml.bind:jakarta.xml.bind-api")
|
|
}
|