2017-08-21 20:41:55 +08:00
|
|
|
description = "Spring Web"
|
|
|
|
|
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}"
|
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-aop"))
|
|
|
|
optional(project(":spring-context"))
|
|
|
|
optional(project(":spring-oxm"))
|
|
|
|
optional("javax.servlet:javax.servlet-api:3.1.0")
|
|
|
|
optional("javax.servlet.jsp:javax.servlet.jsp-api:2.3.2-b02")
|
|
|
|
optional("javax.el:javax.el-api:3.0.1-b04")
|
|
|
|
optional("javax.faces:javax.faces-api:2.2")
|
2017-09-23 17:28:19 +08:00
|
|
|
optional("javax.json.bind:javax.json.bind-api:1.0")
|
2018-09-10 16:52:24 +08:00
|
|
|
optional("javax.mail:javax.mail-api:1.6.2")
|
2017-08-21 20:41:55 +08:00
|
|
|
optional("javax.validation:validation-api:1.1.0.Final")
|
2018-11-19 19:41:26 +08:00
|
|
|
optional("javax.xml.bind:jaxb-api:2.3.1")
|
|
|
|
optional("javax.xml.ws:jaxws-api:2.3.1")
|
2018-04-01 05:17:31 +08:00
|
|
|
optional("org.glassfish.main:javax.jws:4.0-b33")
|
2017-08-21 20:41:55 +08:00
|
|
|
optional("io.reactivex:rxjava:${rxjavaVersion}")
|
|
|
|
optional("io.reactivex:rxjava-reactive-streams:${rxjavaAdapterVersion}")
|
|
|
|
optional("io.reactivex.rxjava2:rxjava:${rxjava2Version}")
|
2017-09-23 17:28:19 +08:00
|
|
|
optional("io.netty:netty-all")
|
2018-06-01 03:35:53 +08:00
|
|
|
optional("io.projectreactor.netty:reactor-netty")
|
2018-09-14 20:03:53 +08:00
|
|
|
optional("io.undertow:undertow-core:${undertowVersion}")
|
2017-08-21 20:41:55 +08:00
|
|
|
optional("org.apache.tomcat.embed:tomcat-embed-core:${tomcatVersion}")
|
2018-07-18 20:05:45 +08:00
|
|
|
optional("org.eclipse.jetty:jetty-server") {
|
2017-09-23 17:28:19 +08:00
|
|
|
exclude group: "javax.servlet", module: "javax.servlet-api"
|
2017-08-21 20:41:55 +08:00
|
|
|
}
|
2018-07-18 20:05:45 +08:00
|
|
|
optional("org.eclipse.jetty:jetty-servlet") {
|
2017-09-23 17:28:19 +08:00
|
|
|
exclude group: "javax.servlet", module: "javax.servlet-api"
|
|
|
|
}
|
2019-04-04 22:10:16 +08:00
|
|
|
optional("org.eclipse.jetty:jetty-reactive-httpclient:1.0.3")
|
2019-05-22 02:47:06 +08:00
|
|
|
optional("com.squareup.okhttp3:okhttp:3.14.2")
|
2019-06-12 05:49:57 +08:00
|
|
|
optional("org.apache.httpcomponents:httpclient:4.5.9") {
|
2017-08-21 20:41:55 +08:00
|
|
|
exclude group: "commons-logging", module: "commons-logging"
|
|
|
|
}
|
2018-08-07 17:24:20 +08:00
|
|
|
optional("org.apache.httpcomponents:httpasyncclient:4.1.4") {
|
2017-08-21 20:41:55 +08:00
|
|
|
exclude group: "commons-logging", module: "commons-logging"
|
|
|
|
}
|
2019-02-05 07:46:07 +08:00
|
|
|
optional("commons-fileupload:commons-fileupload:1.4")
|
2017-09-23 17:28:19 +08:00
|
|
|
optional("org.synchronoss.cloud:nio-multipart-parser:1.1.0")
|
2018-11-19 19:41:26 +08:00
|
|
|
optional("com.fasterxml.woodstox:woodstox-core:5.2.0") { // woodstox before aalto
|
2017-09-23 17:28:19 +08:00
|
|
|
exclude group: "stax", module: "stax-api"
|
|
|
|
}
|
2018-10-15 06:01:45 +08:00
|
|
|
optional("com.fasterxml:aalto-xml:1.1.1")
|
2017-08-21 20:41:55 +08:00
|
|
|
optional("com.fasterxml.jackson.core:jackson-databind:${jackson2Version}")
|
|
|
|
optional("com.fasterxml.jackson.dataformat:jackson-dataformat-xml:${jackson2Version}")
|
|
|
|
optional("com.fasterxml.jackson.dataformat:jackson-dataformat-smile:${jackson2Version}")
|
|
|
|
optional("com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:${jackson2Version}")
|
2018-05-25 06:18:06 +08:00
|
|
|
optional("com.google.code.gson:gson:2.8.5")
|
2019-07-21 01:06:54 +08:00
|
|
|
optional("com.google.protobuf:protobuf-java-util:3.9.0")
|
2017-08-21 20:41:55 +08:00
|
|
|
optional("com.googlecode.protobuf-java-format:protobuf-java-format:1.4")
|
2019-07-21 00:20:03 +08:00
|
|
|
optional("com.rometools:rome:1.12.1")
|
2017-09-23 17:28:19 +08:00
|
|
|
optional("com.caucho:hessian:4.0.51")
|
2018-11-05 19:27:07 +08:00
|
|
|
optional("org.codehaus.groovy:groovy:${groovyVersion}")
|
2019-07-19 16:20:35 +08:00
|
|
|
optional("org.jetbrains.kotlin:kotlin-reflect")
|
|
|
|
optional("org.jetbrains.kotlin:kotlin-stdlib")
|
2017-08-21 20:41:55 +08:00
|
|
|
testCompile("io.projectreactor:reactor-test")
|
2017-09-24 23:18:21 +08:00
|
|
|
testCompile("org.apache.taglibs:taglibs-standard-jstlel:1.2.5") {
|
2017-08-21 20:41:55 +08:00
|
|
|
exclude group: "org.apache.taglibs", module: "taglibs-standard-spec"
|
|
|
|
}
|
|
|
|
testCompile("com.fasterxml.jackson.datatype:jackson-datatype-jdk8:${jackson2Version}")
|
|
|
|
testCompile("com.fasterxml.jackson.datatype:jackson-datatype-joda:${jackson2Version}")
|
2019-03-19 23:58:14 +08:00
|
|
|
testCompile("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:${jackson2Version}")
|
2017-12-21 20:52:00 +08:00
|
|
|
testCompile("com.fasterxml.jackson.module:jackson-module-kotlin:${jackson2Version}")
|
2017-08-21 20:41:55 +08:00
|
|
|
testCompile("org.apache.tomcat:tomcat-util:${tomcatVersion}")
|
|
|
|
testCompile("org.apache.tomcat.embed:tomcat-embed-core:${tomcatVersion}")
|
2018-07-18 20:05:45 +08:00
|
|
|
testCompile("org.eclipse.jetty:jetty-server")
|
|
|
|
testCompile("org.eclipse.jetty:jetty-servlet")
|
2019-05-22 02:47:06 +08:00
|
|
|
testCompile("com.squareup.okhttp3:mockwebserver:3.14.2")
|
2019-07-19 16:20:35 +08:00
|
|
|
testCompile("org.jetbrains.kotlin:kotlin-reflect")
|
2017-08-21 20:41:55 +08:00
|
|
|
testCompile("org.skyscreamer:jsonassert:1.5.0")
|
2019-05-24 06:48:03 +08:00
|
|
|
testCompile("org.xmlunit:xmlunit-assertj:2.6.2")
|
2019-07-21 01:06:54 +08:00
|
|
|
testCompile("org.xmlunit:xmlunit-matchers:2.6.2")
|
2018-09-10 16:52:24 +08:00
|
|
|
testRuntime("com.sun.mail:javax.mail:1.6.2")
|
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")
|
2018-11-23 01:24:18 +08:00
|
|
|
testRuntime("javax.json:javax.json-api:1.1.4")
|
2019-07-31 04:27:09 +08:00
|
|
|
testRuntime("org.apache.johnzon:johnzon-jsonb:1.1.12")
|
2017-09-23 17:28:19 +08:00
|
|
|
}
|