You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.3 KiB
32 lines
1.3 KiB
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 |
|
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") |
|
testCompile(project(":spring-context")) |
|
testCompile(testFixtures(project(":spring-beans"))) |
|
testCompile(testFixtures(project(":spring-context"))) |
|
testCompile(testFixtures(project(":spring-core"))) |
|
testCompile(testFixtures(project(":spring-tx"))) |
|
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") |
|
testFixturesApi("org.junit.jupiter:junit-jupiter-api") |
|
testFixturesImplementation("org.assertj:assertj-core") |
|
testFixturesImplementation("org.mockito:mockito-core") |
|
}
|
|
|