2017-08-21 20:41:55 +08:00
|
|
|
description = "Spring Messaging"
|
|
|
|
|
2017-08-21 20:42:03 +08:00
|
|
|
dependencyManagement {
|
|
|
|
imports {
|
|
|
|
mavenBom "io.projectreactor:reactor-bom:${reactorVersion}"
|
|
|
|
mavenBom "io.netty:netty-bom:${nettyVersion}"
|
2018-07-18 20:05:45 +08:00
|
|
|
mavenBom "org.eclipse.jetty:jetty-bom:${jettyVersion}"
|
2017-08-21 20:42:03 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-21 20:41:55 +08:00
|
|
|
dependencies {
|
|
|
|
compile(project(":spring-beans"))
|
|
|
|
compile(project(":spring-core"))
|
|
|
|
optional(project(":spring-context"))
|
|
|
|
optional(project(":spring-oxm"))
|
2018-06-01 03:35:53 +08:00
|
|
|
optional("io.projectreactor.netty:reactor-netty")
|
2018-07-18 20:05:45 +08:00
|
|
|
optional("org.eclipse.jetty.websocket:websocket-server") {
|
2017-08-21 20:41:55 +08:00
|
|
|
exclude group: "javax.servlet", module: "javax.servlet-api"
|
|
|
|
}
|
2018-07-18 20:05:45 +08:00
|
|
|
optional("org.eclipse.jetty.websocket:websocket-client")
|
2017-08-21 20:41:55 +08:00
|
|
|
optional("com.fasterxml.jackson.core:jackson-databind:${jackson2Version}")
|
2017-09-24 23:18:21 +08:00
|
|
|
optional("javax.xml.bind:jaxb-api:2.3.0")
|
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")
|
|
|
|
testCompile("com.thoughtworks.xstream:xstream:1.4.10")
|
|
|
|
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-07-18 20:05:45 +08:00
|
|
|
testCompile("org.eclipse.jetty:jetty-webapp") {
|
2017-08-21 20:41:55 +08:00
|
|
|
exclude group: "javax.servlet", module: "javax.servlet-api"
|
|
|
|
}
|
|
|
|
testCompile("org.apache.tomcat.embed:tomcat-embed-core:${tomcatVersion}")
|
|
|
|
testCompile("org.apache.tomcat.embed:tomcat-embed-websocket:${tomcatVersion}")
|
2017-08-23 03:29:39 +08:00
|
|
|
testCompile("org.jetbrains.kotlin:kotlin-reflect:${kotlinVersion}")
|
|
|
|
testCompile("org.jetbrains.kotlin:kotlin-stdlib:${kotlinVersion}")
|
2018-08-17 22:01:15 +08:00
|
|
|
testCompile("org.xmlunit:xmlunit-matchers:2.6.1")
|
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
|
|
|
}
|