You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.9 KiB
47 lines
1.9 KiB
description = "Spring Messaging" |
|
|
|
apply plugin: "io.spring.dependency-management" |
|
|
|
dependencyManagement { |
|
imports { |
|
mavenBom "io.projectreactor:reactor-bom:${reactorVersion}" |
|
mavenBom "io.netty:netty-bom:${nettyVersion}" |
|
} |
|
resolutionStrategy { |
|
cacheChangingModulesFor 0, 'seconds' |
|
} |
|
applyMavenExclusions = false |
|
} |
|
|
|
dependencies { |
|
compile(project(":spring-beans")) |
|
compile(project(":spring-core")) |
|
optional(project(":spring-context")) |
|
optional(project(":spring-oxm")) |
|
optional("io.projectreactor.ipc:reactor-netty") |
|
optional("org.eclipse.jetty.websocket:websocket-server:${jettyVersion}") { |
|
exclude group: "javax.servlet", module: "javax.servlet-api" |
|
} |
|
optional("org.eclipse.jetty.websocket:websocket-client:${jettyVersion}") |
|
optional("com.fasterxml.jackson.core:jackson-databind:${jackson2Version}") |
|
optional("javax.xml.bind:jaxb-api:${jaxbVersion}") |
|
testCompile("javax.inject:javax.inject-tck:1") |
|
testCompile("javax.servlet:javax.servlet-api:3.1.0") |
|
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") |
|
testCompile("org.eclipse.jetty:jetty-webapp:${jettyVersion}") { |
|
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}") |
|
testCompile("org.jetbrains.kotlin:kotlin-reflect") |
|
testCompile("org.jetbrains.kotlin:kotlin-stdlib") |
|
testRuntime("com.sun.xml.bind:jaxb-core:${jaxbVersion}") |
|
testRuntime("com.sun.xml.bind:jaxb-impl:${jaxbVersion}") |
|
testRuntime("javax.activation:activation:${activationVersion}") |
|
} |