spring-context-support.gradle 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. description = "Spring Context Support"
  2. dependencies {
  3. compile(project(":spring-beans"))
  4. compile(project(":spring-context"))
  5. compile(project(":spring-core"))
  6. optional(project(":spring-jdbc")) // for Quartz support
  7. optional(project(":spring-tx")) // for Quartz support
  8. optional("javax.activation:javax.activation-api")
  9. optional("javax.mail:javax.mail-api")
  10. optional("javax.cache:cache-api")
  11. optional("com.github.ben-manes.caffeine:caffeine")
  12. optional("net.sf.ehcache:ehcache")
  13. optional("org.quartz-scheduler:quartz")
  14. optional("org.codehaus.fabric3.api:commonj")
  15. optional("org.freemarker:freemarker")
  16. testCompile(project(":spring-context"))
  17. testCompile(testFixtures(project(":spring-beans")))
  18. testCompile(testFixtures(project(":spring-context")))
  19. testCompile(testFixtures(project(":spring-core")))
  20. testCompile(testFixtures(project(":spring-tx")))
  21. testCompile("org.hsqldb:hsqldb")
  22. testCompile("org.hibernate:hibernate-validator")
  23. testCompile("javax.annotation:javax.annotation-api")
  24. testRuntime("org.ehcache:jcache")
  25. testRuntime("org.ehcache:ehcache")
  26. testRuntime("org.glassfish:javax.el")
  27. testRuntime("com.sun.mail:javax.mail")
  28. testFixturesApi("org.junit.jupiter:junit-jupiter-api")
  29. testFixturesImplementation("org.assertj:assertj-core")
  30. testFixturesImplementation("org.mockito:mockito-core")
  31. }