spring-web.gradle 4.1 KB
Newer Older
1 2
description = "Spring Web"

3 4 5 6
dependencyManagement {
	imports {
		mavenBom "io.projectreactor:reactor-bom:${reactorVersion}"
		mavenBom "io.netty:netty-bom:${nettyVersion}"
S
Sebastien Deleuze 已提交
7
		mavenBom "org.eclipse.jetty:jetty-bom:${jettyVersion}"
8 9
	}
}
10 11 12 13 14 15 16 17 18 19 20

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")
21
	optional("javax.json.bind:javax.json.bind-api:1.0")
22
	optional("javax.mail:javax.mail-api:1.6.2")
23
	optional("javax.validation:validation-api:1.1.0.Final")
24 25
	optional("javax.xml.bind:jaxb-api:2.3.1")
	optional("javax.xml.ws:jaxws-api:2.3.1")
26
	optional("org.glassfish.main:javax.jws:4.0-b33")
27 28 29
	optional("io.reactivex:rxjava:${rxjavaVersion}")
	optional("io.reactivex:rxjava-reactive-streams:${rxjavaAdapterVersion}")
	optional("io.reactivex.rxjava2:rxjava:${rxjava2Version}")
30
	optional("io.netty:netty-all")
R
Polish  
Rossen Stoyanchev 已提交
31
	optional("io.projectreactor.netty:reactor-netty")
J
Juergen Hoeller 已提交
32
	optional("io.undertow:undertow-core:${undertowVersion}")
33
	optional("org.apache.tomcat.embed:tomcat-embed-core:${tomcatVersion}")
S
Sebastien Deleuze 已提交
34
	optional("org.eclipse.jetty:jetty-server") {
35
		exclude group: "javax.servlet", module: "javax.servlet-api"
36
	}
S
Sebastien Deleuze 已提交
37
	optional("org.eclipse.jetty:jetty-servlet") {
38 39
		exclude group: "javax.servlet", module: "javax.servlet-api"
	}
40
	optional("org.eclipse.jetty:jetty-reactive-httpclient:1.0.3")
41 42
	optional("com.squareup.okhttp3:okhttp:3.14.3")
	optional("org.apache.httpcomponents:httpclient:4.5.10") {
43 44
		exclude group: "commons-logging", module: "commons-logging"
	}
45
	optional("org.apache.httpcomponents:httpasyncclient:4.1.4") {
46 47
		exclude group: "commons-logging", module: "commons-logging"
	}
48
	optional("commons-fileupload:commons-fileupload:1.4")
49
	optional("org.synchronoss.cloud:nio-multipart-parser:1.1.0")
50
	optional("com.fasterxml.woodstox:woodstox-core:5.2.0") {  // woodstox before aalto
51 52
		exclude group: "stax", module: "stax-api"
	}
53
	optional("com.fasterxml:aalto-xml:1.1.1")
54 55 56 57
	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}")
58
	optional("com.google.code.gson:gson:2.8.5")
59
	optional("com.google.protobuf:protobuf-java-util:3.6.1")
60
	optional("com.googlecode.protobuf-java-format:protobuf-java-format:1.4")
61
	optional("com.rometools:rome:1.12.2")
62
	optional("com.caucho:hessian:4.0.51")
63
	optional("org.codehaus.groovy:groovy:${groovyVersion}")
64 65
	optional("org.jetbrains.kotlin:kotlin-reflect:${kotlinVersion}")
	optional("org.jetbrains.kotlin:kotlin-stdlib:${kotlinVersion}")
66
	testCompile("io.projectreactor:reactor-test")
67
	testCompile("org.apache.taglibs:taglibs-standard-jstlel:1.2.5") {
68 69 70 71
		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}")
72
	testCompile("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:${jackson2Version}")
73
	testCompile("com.fasterxml.jackson.module:jackson-module-kotlin:${jackson2Version}")
74 75
	testCompile("org.apache.tomcat:tomcat-util:${tomcatVersion}")
	testCompile("org.apache.tomcat.embed:tomcat-embed-core:${tomcatVersion}")
S
Sebastien Deleuze 已提交
76 77
	testCompile("org.eclipse.jetty:jetty-server")
	testCompile("org.eclipse.jetty:jetty-servlet")
78
	testCompile("com.squareup.okhttp3:mockwebserver:3.14.3")
79
	testCompile("org.jetbrains.kotlin:kotlin-reflect:${kotlinVersion}")
80
	testCompile("org.skyscreamer:jsonassert:1.5.0")
81 82
	testCompile("org.xmlunit:xmlunit-matchers:2.6.2")
	testRuntime("com.sun.mail:javax.mail:1.6.2")
83 84
	testRuntime("com.sun.xml.bind:jaxb-core:2.3.0.1")
	testRuntime("com.sun.xml.bind:jaxb-impl:2.3.0.1")
85
	testRuntime("javax.json:javax.json-api:1.1.4")
86
	testRuntime("org.apache.johnzon:johnzon-jsonb:1.1.13")
87
}