spring-webmvc.gradle 3.9 KB
Newer Older
1 2
description = "Spring Web MVC"

3 4 5
dependencyManagement {
	imports {
		mavenBom "io.projectreactor:reactor-bom:${reactorVersion}"
S
Sebastien Deleuze 已提交
6
		mavenBom "org.eclipse.jetty:jetty-bom:${jettyVersion}"
7 8 9
	}
}

10
dependencies {
11
	provided("javax.servlet:javax.servlet-api:4.0.1")
12 13 14
	compile(project(":spring-aop"))
	compile(project(":spring-beans"))
	compile(project(":spring-context"))
15
	compile(project(":spring-core"))
16 17 18 19 20 21 22
	compile(project(":spring-expression"))
	compile(project(":spring-web"))
	optional(project(":spring-context-support"))  // for FreeMarker support
	optional(project(":spring-oxm"))
	optional("javax.servlet.jsp:javax.servlet.jsp-api:2.3.2-b02")
	optional("javax.servlet.jsp.jstl:javax.servlet.jsp.jstl-api:1.2.1")
	optional("javax.el:javax.el-api:3.0.1-b04")
23
	optional("javax.xml.bind:jaxb-api:2.3.1")
24
	optional("org.webjars:webjars-locator-core:0.37")
25
	optional("com.rometools:rome:1.12.2")
26
	optional("com.github.librepdf:openpdf:1.2.21")
27
	optional("org.apache.poi:poi-ooxml:4.1.0")
28 29 30 31 32
	optional("org.freemarker:freemarker:${freemarkerVersion}")
	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}")
33 34 35 36 37
	optional("org.apache.tiles:tiles-api:${tiles3Version}", withoutJclOverSlf4j)
	optional("org.apache.tiles:tiles-core:${tiles3Version}", withoutJclOverSlf4j)
	optional("org.apache.tiles:tiles-servlet:${tiles3Version}", withoutJclOverSlf4j)
	optional("org.apache.tiles:tiles-jsp:${tiles3Version}", withoutJclOverSlf4j)
	optional("org.apache.tiles:tiles-el:${tiles3Version}", withoutJclOverSlf4j)
38 39
	optional("org.apache.tiles:tiles-extras:${tiles3Version}") {
		exclude group: "org.springframework", module: "spring-web"
40
		exclude group: "org.slf4j", module: "jcl-over-slf4j"
41
	}
42
	optional("org.codehaus.groovy:groovy-templates:${groovyVersion}")
43 44
	optional("org.jetbrains.kotlin:kotlin-reflect:${kotlinVersion}")
	optional("org.jetbrains.kotlin:kotlin-stdlib:${kotlinVersion}")
45
	optional("org.reactivestreams:reactive-streams")
46
	testCompile("javax.servlet:javax.servlet-api:4.0.1")
S
Sebastien Deleuze 已提交
47
	testCompile("org.eclipse.jetty:jetty-servlet") {
48 49
		exclude group: "javax.servlet", module: "javax.servlet"
	}
S
Sebastien Deleuze 已提交
50
	testCompile("org.eclipse.jetty:jetty-server") {
51 52
		exclude group: "javax.servlet", module: "javax.servlet"
	}
53
	testCompile("org.apache.httpcomponents:httpclient:4.5.10") {
54 55
		exclude group: "commons-logging", module: "commons-logging"
	}
56
	testCompile("commons-fileupload:commons-fileupload:1.4")
57
	testCompile("commons-io:commons-io:2.5")
58
	testCompile("joda-time:joda-time:2.10.4")
J
Juergen Hoeller 已提交
59
	testCompile("org.mozilla:rhino:1.7.10")
60 61 62 63 64 65 66 67
	testCompile("dom4j:dom4j:1.6.1") {
		exclude group: "xml-apis", module: "xml-apis"
	}
	testCompile("jaxen:jaxen:1.1.1") {
		exclude group: "xml-apis", module: "xml-apis"
		exclude group: "xom", module: "xom"
		exclude group: "xerces", module: "xercesImpl"
	}
68
	testCompile("org.xmlunit:xmlunit-matchers:2.6.2")
69
	testCompile("org.hibernate:hibernate-validator:6.0.17.Final")
70 71 72 73
	testCompile("io.projectreactor:reactor-core")
	testCompile("io.reactivex:rxjava:${rxjavaVersion}")
	testCompile("io.reactivex:rxjava-reactive-streams:${rxjavaAdapterVersion}")
	testCompile("io.reactivex.rxjava2:rxjava:${rxjava2Version}")
74 75 76
	testCompile("org.jetbrains.kotlin:kotlin-script-runtime:${kotlinVersion}")
	testRuntime("org.jetbrains.kotlin:kotlin-script-util:${kotlinVersion}")
	testRuntime("org.jetbrains.kotlin:kotlin-compiler:${kotlinVersion}")
77
	testRuntime("org.jruby:jruby:9.2.7.0")
78 79 80
	testRuntime("org.python:jython-standalone:2.7.1")
	testRuntime("org.webjars:underscorejs:1.8.3")
	testRuntime("org.glassfish:javax.el:3.0.1-b08")
81 82
	testRuntime("com.sun.xml.bind:jaxb-core:2.3.0.1")
	testRuntime("com.sun.xml.bind:jaxb-impl:2.3.0.1")
83
	testRuntime("com.sun.activation:javax.activation:1.2.0")
84
}