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.
66 lines
3.1 KiB
66 lines
3.1 KiB
description = "Spring WebFlux" |
|
|
|
dependencyManagement { |
|
imports { |
|
mavenBom "io.projectreactor:reactor-bom:${reactorVersion}" |
|
mavenBom "io.netty:netty-bom:${nettyVersion}" |
|
mavenBom "org.eclipse.jetty:jetty-bom:${jettyVersion}" |
|
} |
|
} |
|
|
|
dependencies { |
|
compile(project(":spring-beans")) |
|
compile(project(":spring-core")) |
|
compile(project(":spring-web")) |
|
compile("io.projectreactor:reactor-core") |
|
optional(project(":spring-context")) |
|
optional(project(":spring-context-support")) // for FreeMarker support |
|
optional("javax.servlet:javax.servlet-api:4.0.1") |
|
optional("javax.websocket:javax.websocket-api:1.1") |
|
optional("org.webjars:webjars-locator-core:0.36") |
|
optional("org.freemarker:freemarker:${freemarkerVersion}") |
|
optional("com.fasterxml.jackson.core:jackson-databind:${jackson2Version}") |
|
optional("com.fasterxml.jackson.dataformat:jackson-dataformat-smile:${jackson2Version}") |
|
optional("io.reactivex:rxjava:${rxjavaVersion}") |
|
optional("io.reactivex:rxjava-reactive-streams:${rxjavaAdapterVersion}") |
|
optional("io.projectreactor.netty:reactor-netty") |
|
optional("org.apache.tomcat:tomcat-websocket:${tomcatVersion}") { |
|
exclude group: "org.apache.tomcat", module: "tomcat-websocket-api" |
|
exclude group: "org.apache.tomcat", module: "tomcat-servlet-api" |
|
} |
|
optional("org.eclipse.jetty.websocket:websocket-server") { |
|
exclude group: "javax.servlet", module: "javax.servlet" |
|
} |
|
optional("io.undertow:undertow-websockets-jsr:${undertowVersion}") { |
|
exclude group: "org.jboss.spec.javax.websocket", module: "jboss-websocket-api_1.1_spec" |
|
} |
|
optional("org.apache.httpcomponents:httpclient:4.5.7") { |
|
exclude group: "commons-logging", module: "commons-logging" |
|
} |
|
optional("org.jetbrains.kotlin:kotlin-reflect:${kotlinVersion}") |
|
optional("org.jetbrains.kotlin:kotlin-stdlib:${kotlinVersion}") |
|
optional("com.google.protobuf:protobuf-java-util:3.6.1") |
|
testCompile("javax.xml.bind:jaxb-api:2.3.1") |
|
testCompile("com.fasterxml:aalto-xml:1.1.1") |
|
testCompile("org.hibernate:hibernate-validator:6.0.15.Final") |
|
testCompile "io.reactivex.rxjava2:rxjava:${rxjava2Version}" |
|
testCompile("io.projectreactor:reactor-test") |
|
testCompile("io.undertow:undertow-core:${undertowVersion}") |
|
testCompile("org.apache.tomcat.embed:tomcat-embed-core:${tomcatVersion}") |
|
testCompile("org.apache.tomcat:tomcat-util:${tomcatVersion}") |
|
testCompile("org.eclipse.jetty:jetty-server") |
|
testCompile("org.eclipse.jetty:jetty-servlet") |
|
testCompile("org.eclipse.jetty:jetty-reactive-httpclient:1.0.2") |
|
testCompile("com.squareup.okhttp3:mockwebserver:3.12.1") |
|
testCompile("org.jetbrains.kotlin:kotlin-script-runtime:${kotlinVersion}") |
|
testRuntime("org.jetbrains.kotlin:kotlin-script-util:${kotlinVersion}") |
|
testRuntime("org.jetbrains.kotlin:kotlin-compiler:${kotlinVersion}") |
|
testRuntime("org.jruby:jruby:9.2.5.0") |
|
testRuntime("org.python:jython-standalone:2.7.1") |
|
testRuntime("org.synchronoss.cloud:nio-multipart-parser:1.1.0") |
|
testRuntime("org.webjars:underscorejs:1.8.3") |
|
testRuntime("org.glassfish:javax.el:3.0.1-b08") |
|
testRuntime("com.sun.xml.bind:jaxb-core:2.3.0.1") |
|
testRuntime("com.sun.xml.bind:jaxb-impl:2.3.0.1") |
|
testRuntime("com.sun.activation:javax.activation:1.2.0") |
|
}
|
|
|