2017-08-21 20:41:55 +08:00
|
|
|
description = "Spring Context Support"
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile(project(":spring-beans"))
|
|
|
|
compile(project(":spring-context"))
|
|
|
|
compile(project(":spring-core"))
|
|
|
|
optional(project(":spring-jdbc")) // for Quartz support
|
|
|
|
optional(project(":spring-tx")) // for Quartz support
|
2019-08-27 03:13:12 +08:00
|
|
|
optional("javax.activation:javax.activation-api")
|
|
|
|
optional("javax.mail:javax.mail-api")
|
|
|
|
optional("javax.cache:cache-api")
|
|
|
|
optional("com.github.ben-manes.caffeine:caffeine")
|
|
|
|
optional("net.sf.ehcache:ehcache")
|
|
|
|
optional("org.quartz-scheduler:quartz")
|
|
|
|
optional("org.codehaus.fabric3.api:commonj")
|
|
|
|
optional("org.freemarker:freemarker")
|
2017-08-21 20:41:55 +08:00
|
|
|
testCompile(project(":spring-context"))
|
2019-12-29 00:13:39 +08:00
|
|
|
testCompile(testFixtures(project(":spring-beans")))
|
|
|
|
testCompile(testFixtures(project(":spring-context")))
|
2019-12-28 18:44:40 +08:00
|
|
|
testCompile(testFixtures(project(":spring-core")))
|
2019-12-30 01:38:33 +08:00
|
|
|
testCompile(testFixtures(project(":spring-tx")))
|
2019-08-27 03:13:12 +08:00
|
|
|
testCompile("org.hsqldb:hsqldb")
|
|
|
|
testCompile("org.hibernate:hibernate-validator")
|
|
|
|
testCompile("javax.annotation:javax.annotation-api")
|
|
|
|
testRuntime("org.ehcache:jcache")
|
|
|
|
testRuntime("org.ehcache:ehcache")
|
|
|
|
testRuntime("org.glassfish:javax.el")
|
|
|
|
testRuntime("com.sun.mail:javax.mail")
|
2019-12-29 22:43:15 +08:00
|
|
|
testFixturesApi("org.junit.jupiter:junit-jupiter-api")
|
|
|
|
testFixturesImplementation("org.assertj:assertj-core")
|
|
|
|
testFixturesImplementation("org.mockito:mockito-core")
|
2017-09-23 17:28:19 +08:00
|
|
|
}
|