spring-jms.gradle 638 B

123456789101112131415161718
  1. description = "Spring JMS"
  2. dependencies {
  3. compile(project(":spring-beans"))
  4. compile(project(":spring-core"))
  5. compile(project(":spring-messaging"))
  6. compile(project(":spring-tx"))
  7. compileOnly("javax.jms:javax.jms-api")
  8. optional(project(":spring-aop"))
  9. optional(project(":spring-context"))
  10. optional(project(":spring-oxm"))
  11. optional("javax.resource:javax.resource-api")
  12. optional("javax.transaction:javax.transaction-api")
  13. optional("com.fasterxml.jackson.core:jackson-databind")
  14. testCompile(testFixtures(project(":spring-beans")))
  15. testCompile(testFixtures(project(":spring-tx")))
  16. testImplementation("javax.jms:javax.jms-api")
  17. }