spring-messaging.gradle 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. description = "Spring Messaging"
  2. apply plugin: "kotlin"
  3. dependencies {
  4. compile(project(":spring-beans"))
  5. compile(project(":spring-core"))
  6. compileOnly(project(":kotlin-coroutines"))
  7. optional(project(":spring-context"))
  8. optional(project(":spring-oxm"))
  9. optional("io.projectreactor.netty:reactor-netty")
  10. optional("io.rsocket:rsocket-core")
  11. optional("io.rsocket:rsocket-transport-netty")
  12. optional("com.fasterxml.jackson.core:jackson-databind")
  13. optional("javax.xml.bind:jaxb-api")
  14. optional("com.google.protobuf:protobuf-java-util")
  15. optional("org.jetbrains.kotlinx:kotlinx-coroutines-core")
  16. optional("org.jetbrains.kotlinx:kotlinx-coroutines-reactor")
  17. testCompile(project(":kotlin-coroutines"))
  18. testCompile(testFixtures(project(":spring-core")))
  19. testCompile("javax.inject:javax.inject-tck")
  20. testCompile("javax.servlet:javax.servlet-api")
  21. testCompile("javax.validation:validation-api")
  22. testCompile("com.thoughtworks.xstream:xstream")
  23. testCompile("org.apache.activemq:activemq-broker")
  24. testCompile("org.apache.activemq:activemq-kahadb-store")
  25. testCompile("org.apache.activemq:activemq-stomp")
  26. testCompile("io.projectreactor:reactor-test")
  27. testCompile "io.reactivex.rxjava2:rxjava"
  28. testCompile("org.jetbrains.kotlin:kotlin-reflect")
  29. testCompile("org.jetbrains.kotlin:kotlin-stdlib")
  30. testCompile("org.xmlunit:xmlunit-assertj")
  31. testCompile("org.xmlunit:xmlunit-matchers")
  32. testRuntime("com.sun.xml.bind:jaxb-core")
  33. testRuntime("com.sun.xml.bind:jaxb-impl")
  34. testRuntime("com.sun.activation:javax.activation")
  35. }