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:42:03 +08:00
|
|
|
dependencyManagement {
|
|
|
|
imports {
|
|
|
|
mavenBom "io.projectreactor:reactor-bom:${reactorVersion}"
|
|
|
|
mavenBom "io.netty:netty-bom:${nettyVersion}"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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"))
|
2018-06-01 03:35:53 +08:00
|
|
|
optional("io.projectreactor.netty:reactor-netty")
|
2019-02-11 03:45:16 +08:00
|
|
|
optional("io.rsocket:rsocket-core:${rsocketVersion}")
|
2019-04-23 16:55:23 +08:00
|
|
|
optional("io.rsocket:rsocket-transport-netty:${rsocketVersion}")
|
2017-08-21 20:41:55 +08:00
|
|
|
optional("com.fasterxml.jackson.core:jackson-databind:${jackson2Version}")
|
2018-11-19 19:41:26 +08:00
|
|
|
optional("javax.xml.bind:jaxb-api:2.3.1")
|
2019-07-21 17:15:07 +08:00
|
|
|
optional("org.jetbrains.kotlinx:kotlinx-coroutines-core")
|
|
|
|
optional("org.jetbrains.kotlinx:kotlinx-coroutines-reactor")
|
2017-08-21 20:41:55 +08:00
|
|
|
testCompile("javax.inject:javax.inject-tck:1")
|
2018-05-07 20:17:28 +08:00
|
|
|
testCompile("javax.servlet:javax.servlet-api:4.0.1")
|
2017-08-21 20:41:55 +08:00
|
|
|
testCompile("javax.validation:validation-api:1.1.0.Final")
|
2019-07-21 00:20:03 +08:00
|
|
|
testCompile("com.thoughtworks.xstream:xstream:1.4.11.1")
|
2017-08-21 20:41:55 +08:00
|
|
|
testCompile("org.apache.activemq:activemq-broker:5.8.0")
|
|
|
|
testCompile("org.apache.activemq:activemq-kahadb-store:5.8.0") {
|
|
|
|
exclude group: "org.springframework", module: "spring-context"
|
|
|
|
}
|
|
|
|
testCompile("org.apache.activemq:activemq-stomp:5.8.0")
|
2018-11-07 03:14:48 +08:00
|
|
|
testCompile("io.projectreactor:reactor-test")
|
2019-01-26 06:47:57 +08:00
|
|
|
testCompile "io.reactivex.rxjava2:rxjava:${rxjava2Version}"
|
2019-07-19 16:20:35 +08:00
|
|
|
testCompile("org.jetbrains.kotlin:kotlin-reflect")
|
|
|
|
testCompile("org.jetbrains.kotlin:kotlin-stdlib")
|
2019-05-24 06:48:03 +08:00
|
|
|
testCompile("org.xmlunit:xmlunit-assertj:2.6.2")
|
2018-09-10 16:52:24 +08:00
|
|
|
testCompile("org.xmlunit:xmlunit-matchers:2.6.2")
|
2019-08-21 20:28:42 +08:00
|
|
|
testCompile(project(":kotlin-coroutines"))
|
2018-06-12 04:01:51 +08:00
|
|
|
testRuntime("com.sun.xml.bind:jaxb-core:2.3.0.1")
|
|
|
|
testRuntime("com.sun.xml.bind:jaxb-impl:2.3.0.1")
|
2017-10-26 01:18:10 +08:00
|
|
|
testRuntime("com.sun.activation:javax.activation:1.2.0")
|
2017-09-23 17:28:19 +08:00
|
|
|
}
|