mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-05-03 12:29:44 +01:00
d84ca2ba90
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
30 lines
1.2 KiB
Groovy
30 lines
1.2 KiB
Groovy
description = "Spring Context Support"
|
|
|
|
dependencies {
|
|
api(project(":spring-beans"))
|
|
api(project(":spring-context"))
|
|
api(project(":spring-core"))
|
|
optional(project(":spring-jdbc")) // for Quartz support
|
|
optional(project(":spring-tx")) // for Quartz support
|
|
optional("jakarta.activation:jakarta.activation-api")
|
|
optional("jakarta.mail:jakarta.mail-api")
|
|
optional("javax.cache:cache-api")
|
|
optional("com.github.ben-manes.caffeine:caffeine")
|
|
optional("org.quartz-scheduler:quartz")
|
|
optional("org.freemarker:freemarker")
|
|
testImplementation(project(":spring-context"))
|
|
testImplementation(testFixtures(project(":spring-beans")))
|
|
testImplementation(testFixtures(project(":spring-context")))
|
|
testImplementation(testFixtures(project(":spring-core")))
|
|
testImplementation(testFixtures(project(":spring-tx")))
|
|
testImplementation("org.hsqldb:hsqldb")
|
|
testImplementation("jakarta.annotation:jakarta.annotation-api")
|
|
testRuntimeOnly("org.ehcache:jcache")
|
|
testRuntimeOnly("org.ehcache:ehcache")
|
|
testRuntimeOnly("org.glassfish:jakarta.el")
|
|
testRuntimeOnly("com.sun.mail:jakarta.mail")
|
|
testFixturesApi("org.junit.jupiter:junit-jupiter-api")
|
|
testFixturesImplementation("org.assertj:assertj-core")
|
|
testFixturesImplementation("org.mockito:mockito-core")
|
|
}
|