mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-05-02 20:09:31 +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
31 lines
1.1 KiB
Groovy
31 lines
1.1 KiB
Groovy
description = "Spring Integration Tests"
|
|
|
|
dependencies {
|
|
testImplementation(project(":spring-aop"))
|
|
testImplementation(project(":spring-beans"))
|
|
testImplementation(project(":spring-context"))
|
|
testImplementation(project(":spring-core"))
|
|
testImplementation(testFixtures(project(":spring-aop")))
|
|
testImplementation(testFixtures(project(":spring-beans")))
|
|
testImplementation(testFixtures(project(":spring-core")))
|
|
testImplementation(testFixtures(project(":spring-tx")))
|
|
testImplementation(project(":spring-expression"))
|
|
testImplementation(project(":spring-jdbc"))
|
|
testImplementation(project(":spring-orm"))
|
|
testImplementation(project(":spring-test"))
|
|
testImplementation(project(":spring-tx"))
|
|
testImplementation(project(":spring-web"))
|
|
testImplementation("jakarta.inject:jakarta.inject-api")
|
|
testImplementation("jakarta.resource:jakarta.resource-api")
|
|
testImplementation("jakarta.servlet:jakarta.servlet-api")
|
|
testImplementation("org.aspectj:aspectjweaver")
|
|
testImplementation("org.hsqldb:hsqldb")
|
|
testImplementation("org.hibernate:hibernate-core-jakarta")
|
|
}
|
|
|
|
normalization {
|
|
runtimeClasspath {
|
|
ignore "META-INF/MANIFEST.MF"
|
|
}
|
|
}
|