mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-05-03 04:19:47 +01:00
949432ce8b
Includes removal of ManagedBean and javax.annotation legacy support. Includes AbstractJson(Http)MessageConverter revision for Yasson 3.0. Includes initial Hibernate ORM 7.0 upgrade. Closes gh-34011 Closes gh-33750
31 lines
1.3 KiB
Groovy
31 lines
1.3 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("com.github.ben-manes.caffeine:caffeine")
|
|
optional("jakarta.activation:jakarta.activation-api")
|
|
optional("jakarta.mail:jakarta.mail-api")
|
|
optional("javax.cache:cache-api")
|
|
optional("org.freemarker:freemarker")
|
|
optional("org.quartz-scheduler:quartz")
|
|
testFixturesApi("org.junit.jupiter:junit-jupiter-api")
|
|
testFixturesImplementation("org.assertj:assertj-core")
|
|
testFixturesImplementation("org.mockito:mockito-core")
|
|
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("io.projectreactor:reactor-core")
|
|
testImplementation("jakarta.annotation:jakarta.annotation-api")
|
|
testImplementation("org.hsqldb:hsqldb")
|
|
testRuntimeOnly("org.eclipse.angus:angus-mail")
|
|
testRuntimeOnly("org.ehcache:ehcache")
|
|
testRuntimeOnly("org.ehcache:jcache")
|
|
testRuntimeOnly("org.glassfish:jakarta.el")
|
|
}
|