2017-08-21 20:41:55 +08:00
|
|
|
description = "Spring Messaging"
|
|
|
|
|
2019-08-21 02:26:43 +08:00
|
|
|
apply plugin: "kotlin"
|
|
|
|
|
2017-08-21 20:41:55 +08:00
|
|
|
dependencies {
|
|
|
|
compile(project(":spring-beans"))
|
|
|
|
compile(project(":spring-core"))
|
2019-08-21 20:28:42 +08:00
|
|
|
compileOnly(project(":kotlin-coroutines"))
|
2017-08-21 20:41:55 +08:00
|
|
|
optional(project(":spring-context"))
|
|
|
|
optional(project(":spring-oxm"))
|
2020-08-01 17:49:15 +08:00
|
|
|
optional("io.projectreactor.netty:reactor-netty-http")
|
2019-08-27 03:13:12 +08:00
|
|
|
optional("io.rsocket:rsocket-core")
|
|
|
|
optional("io.rsocket:rsocket-transport-netty")
|
|
|
|
optional("com.fasterxml.jackson.core:jackson-databind")
|
2020-09-25 16:48:25 +08:00
|
|
|
optional("com.google.code.gson:gson")
|
|
|
|
optional("javax.json.bind:javax.json.bind-api")
|
2019-08-27 03:13:12 +08:00
|
|
|
optional("javax.xml.bind:jaxb-api")
|
2019-11-29 23:53:37 +08:00
|
|
|
optional("com.google.protobuf:protobuf-java-util")
|
2019-07-21 17:15:07 +08:00
|
|
|
optional("org.jetbrains.kotlinx:kotlinx-coroutines-reactor")
|
2019-12-28 18:44:40 +08:00
|
|
|
testCompile(project(":kotlin-coroutines"))
|
|
|
|
testCompile(testFixtures(project(":spring-core")))
|
2019-08-27 03:13:12 +08:00
|
|
|
testCompile("javax.inject:javax.inject-tck")
|
|
|
|
testCompile("javax.servlet:javax.servlet-api")
|
|
|
|
testCompile("javax.validation:validation-api")
|
|
|
|
testCompile("com.thoughtworks.xstream:xstream")
|
|
|
|
testCompile("org.apache.activemq:activemq-broker")
|
|
|
|
testCompile("org.apache.activemq:activemq-kahadb-store")
|
|
|
|
testCompile("org.apache.activemq:activemq-stomp")
|
2018-11-07 03:14:48 +08:00
|
|
|
testCompile("io.projectreactor:reactor-test")
|
2020-05-11 15:40:01 +08:00
|
|
|
testCompile "io.reactivex.rxjava3:rxjava"
|
2019-07-19 16:20:35 +08:00
|
|
|
testCompile("org.jetbrains.kotlin:kotlin-reflect")
|
|
|
|
testCompile("org.jetbrains.kotlin:kotlin-stdlib")
|
2019-08-27 03:13:12 +08:00
|
|
|
testCompile("org.xmlunit:xmlunit-assertj")
|
|
|
|
testCompile("org.xmlunit:xmlunit-matchers")
|
2020-09-25 16:48:25 +08:00
|
|
|
testRuntime("com.sun.activation:javax.activation")
|
2019-08-27 03:13:12 +08:00
|
|
|
testRuntime("com.sun.xml.bind:jaxb-core")
|
|
|
|
testRuntime("com.sun.xml.bind:jaxb-impl")
|
2020-09-25 16:48:25 +08:00
|
|
|
testRuntime("javax.json:javax.json-api")
|
|
|
|
testRuntime("org.apache.johnzon:johnzon-jsonb")
|
2020-07-09 06:04:09 +08:00
|
|
|
testRuntime(project(":spring-context"))
|
2017-09-23 17:28:19 +08:00
|
|
|
}
|