2017-08-21 20:41:55 +08:00
|
|
|
description = "Spring WebFlux"
|
|
|
|
|
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"))
|
|
|
|
compile(project(":spring-web"))
|
|
|
|
compile("io.projectreactor:reactor-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-context-support")) // for FreeMarker support
|
2019-08-27 03:13:12 +08:00
|
|
|
optional("javax.servlet:javax.servlet-api")
|
|
|
|
optional("javax.websocket:javax.websocket-api")
|
|
|
|
optional("org.webjars:webjars-locator-core")
|
|
|
|
optional("org.freemarker:freemarker")
|
|
|
|
optional("com.fasterxml.jackson.core:jackson-databind")
|
|
|
|
optional("com.fasterxml.jackson.dataformat:jackson-dataformat-smile")
|
2018-06-01 03:35:53 +08:00
|
|
|
optional("io.projectreactor.netty:reactor-netty")
|
2019-08-27 03:13:12 +08:00
|
|
|
optional("org.apache.tomcat:tomcat-websocket")
|
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"
|
|
|
|
}
|
2019-08-27 03:13:12 +08:00
|
|
|
optional("io.undertow:undertow-websockets-jsr")
|
|
|
|
optional("org.apache.httpcomponents:httpclient")
|
2019-07-19 16:20:35 +08:00
|
|
|
optional("org.jetbrains.kotlin:kotlin-reflect")
|
|
|
|
optional("org.jetbrains.kotlin:kotlin-stdlib")
|
2019-08-27 03:13:12 +08:00
|
|
|
optional("com.google.protobuf:protobuf-java-util")
|
2019-07-21 17:15:07 +08:00
|
|
|
optional("org.jetbrains.kotlinx:kotlinx-coroutines-core")
|
|
|
|
optional("org.jetbrains.kotlinx:kotlinx-coroutines-reactor")
|
2019-12-28 18:44:40 +08:00
|
|
|
testCompile(project(":kotlin-coroutines"))
|
2019-12-29 00:13:39 +08:00
|
|
|
testCompile(testFixtures(project(":spring-beans")))
|
2019-12-28 18:44:40 +08:00
|
|
|
testCompile(testFixtures(project(":spring-core")))
|
2019-12-31 21:58:51 +08:00
|
|
|
testCompile(testFixtures(project(":spring-web")))
|
2019-08-27 03:13:12 +08:00
|
|
|
testCompile("javax.xml.bind:jaxb-api")
|
|
|
|
testCompile("com.fasterxml:aalto-xml")
|
|
|
|
testCompile("org.hibernate:hibernate-validator")
|
|
|
|
testCompile("javax.validation:validation-api")
|
2020-05-11 15:40:01 +08:00
|
|
|
testCompile("io.reactivex.rxjava3:rxjava")
|
2017-09-23 17:28:19 +08:00
|
|
|
testCompile("io.projectreactor:reactor-test")
|
2019-08-27 03:13:12 +08:00
|
|
|
testCompile("io.undertow:undertow-core")
|
|
|
|
testCompile("org.apache.tomcat.embed:tomcat-embed-core")
|
|
|
|
testCompile("org.apache.tomcat:tomcat-util")
|
2018-07-18 20:05:45 +08:00
|
|
|
testCompile("org.eclipse.jetty:jetty-server")
|
|
|
|
testCompile("org.eclipse.jetty:jetty-servlet")
|
2019-08-27 03:13:12 +08:00
|
|
|
testCompile("org.eclipse.jetty:jetty-reactive-httpclient")
|
2020-03-15 06:27:01 +08:00
|
|
|
testCompile('org.apache.httpcomponents.client5:httpclient5:5.0')
|
|
|
|
testCompile('org.apache.httpcomponents.core5:httpcore5-reactive:5.0')
|
2019-08-27 03:13:12 +08:00
|
|
|
testCompile("com.squareup.okhttp3:mockwebserver")
|
2020-07-30 16:57:53 +08:00
|
|
|
testCompile("org.jetbrains.kotlin:kotlin-script-runtime")
|
2020-07-30 16:18:27 +08:00
|
|
|
testRuntime("org.jetbrains.kotlin:kotlin-scripting-jsr223")
|
2019-08-27 03:13:12 +08:00
|
|
|
testRuntime("org.jruby:jruby")
|
|
|
|
testRuntime("org.python:jython-standalone")
|
|
|
|
testRuntime("org.synchronoss.cloud:nio-multipart-parser")
|
|
|
|
testRuntime("org.webjars:underscorejs")
|
|
|
|
testRuntime("org.glassfish:javax.el")
|
|
|
|
testRuntime("com.sun.xml.bind:jaxb-core")
|
|
|
|
testRuntime("com.sun.xml.bind:jaxb-impl")
|
|
|
|
testRuntime("com.sun.activation:javax.activation")
|
2017-09-23 17:28:19 +08:00
|
|
|
}
|
2019-09-25 19:44:14 +08:00
|
|
|
|
|
|
|
test {
|
|
|
|
maxParallelForks = 4
|
|
|
|
}
|