2017-08-21 20:41:55 +08:00
|
|
|
description = "Spring Web MVC"
|
|
|
|
|
2019-08-21 02:26:43 +08:00
|
|
|
apply plugin: "kotlin"
|
|
|
|
|
2017-08-21 20:41:55 +08:00
|
|
|
dependencies {
|
2021-05-22 03:16:30 +08:00
|
|
|
api(project(":spring-aop"))
|
|
|
|
api(project(":spring-beans"))
|
|
|
|
api(project(":spring-context"))
|
|
|
|
api(project(":spring-core"))
|
|
|
|
api(project(":spring-expression"))
|
|
|
|
api(project(":spring-web"))
|
2021-09-17 15:14:07 +08:00
|
|
|
compileOnly("jakarta.servlet:jakarta.servlet-api")
|
2022-08-31 22:34:48 +08:00
|
|
|
compileOnly("com.google.code.findbugs:findbugs") { // for groovy-templates
|
|
|
|
exclude group: "dom4j", module: "dom4j"
|
|
|
|
}
|
2017-08-21 20:41:55 +08:00
|
|
|
optional(project(":spring-context-support")) // for FreeMarker support
|
|
|
|
optional(project(":spring-oxm"))
|
2023-08-02 05:52:48 +08:00
|
|
|
optional("com.fasterxml.jackson.core:jackson-databind")
|
|
|
|
optional("com.fasterxml.jackson.dataformat:jackson-dataformat-cbor")
|
|
|
|
optional("com.fasterxml.jackson.dataformat:jackson-dataformat-smile")
|
|
|
|
optional("com.fasterxml.jackson.dataformat:jackson-dataformat-xml")
|
2024-02-29 15:26:26 +08:00
|
|
|
optional("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml")
|
2023-08-02 05:52:48 +08:00
|
|
|
optional("com.github.librepdf:openpdf")
|
|
|
|
optional("com.rometools:rome")
|
|
|
|
optional("io.micrometer:context-propagation")
|
|
|
|
optional("jakarta.el:jakarta.el-api")
|
2021-09-17 15:14:07 +08:00
|
|
|
optional("jakarta.servlet.jsp:jakarta.servlet.jsp-api")
|
|
|
|
optional("jakarta.servlet.jsp.jstl:jakarta.servlet.jsp.jstl-api")
|
2023-06-08 22:39:22 +08:00
|
|
|
optional("jakarta.validation:jakarta.validation-api")
|
2021-09-17 15:14:07 +08:00
|
|
|
optional("jakarta.xml.bind:jakarta.xml.bind-api")
|
2023-08-02 05:52:48 +08:00
|
|
|
optional("org.apache.groovy:groovy-templates")
|
2019-08-27 03:13:12 +08:00
|
|
|
optional("org.apache.poi:poi-ooxml")
|
|
|
|
optional("org.freemarker:freemarker")
|
2019-07-19 16:20:35 +08:00
|
|
|
optional("org.jetbrains.kotlin:kotlin-reflect")
|
|
|
|
optional("org.jetbrains.kotlin:kotlin-stdlib")
|
2023-08-02 05:52:48 +08:00
|
|
|
optional("org.jetbrains.kotlinx:kotlinx-coroutines-reactor")
|
2022-10-07 20:12:45 +08:00
|
|
|
optional("org.jetbrains.kotlinx:kotlinx-serialization-cbor")
|
|
|
|
optional("org.jetbrains.kotlinx:kotlinx-serialization-json")
|
|
|
|
optional("org.jetbrains.kotlinx:kotlinx-serialization-protobuf")
|
2017-08-21 20:41:55 +08:00
|
|
|
optional("org.reactivestreams:reactive-streams")
|
2024-03-21 23:52:50 +08:00
|
|
|
optional("org.webjars:webjars-locator-lite")
|
2025-02-13 00:49:23 +08:00
|
|
|
testCompileOnly("com.google.code.findbugs:findbugs") { // for groovy-templates
|
|
|
|
exclude group: "dom4j", module: "dom4j"
|
|
|
|
}
|
2021-05-22 03:16:30 +08:00
|
|
|
testImplementation(testFixtures(project(":spring-beans")))
|
|
|
|
testImplementation(testFixtures(project(":spring-context")))
|
2023-08-02 06:56:50 +08:00
|
|
|
testImplementation(testFixtures(project(":spring-core")))
|
2021-05-22 03:16:30 +08:00
|
|
|
testImplementation(testFixtures(project(":spring-web")))
|
|
|
|
testImplementation("commons-io:commons-io")
|
2023-08-02 06:56:50 +08:00
|
|
|
testImplementation("io.projectreactor:reactor-core")
|
|
|
|
testImplementation("io.reactivex.rxjava3:rxjava")
|
|
|
|
testImplementation("jakarta.servlet:jakarta.servlet-api")
|
|
|
|
testImplementation("jakarta.validation:jakarta.validation-api")
|
|
|
|
testImplementation("jaxen:jaxen")
|
2022-08-30 22:18:49 +08:00
|
|
|
testImplementation("org.dom4j:dom4j") {
|
|
|
|
exclude group: "javax.xml.bind", module: "jaxb-api"
|
|
|
|
exclude group: "jaxen", module: "jaxen"
|
|
|
|
exclude group: "net.java.dev.msv", module: "xsdlib"
|
|
|
|
exclude group: "pull-parser", module: "pull-parser"
|
|
|
|
exclude group: "xpp3", module: "xpp3"
|
|
|
|
}
|
2025-01-11 01:03:10 +08:00
|
|
|
testImplementation("org.eclipse.jetty.ee11:jetty-ee11-servlet") {
|
2023-08-02 06:56:50 +08:00
|
|
|
exclude group: "jakarta.servlet", module: "jakarta.servlet-api"
|
|
|
|
}
|
2024-12-15 21:37:54 +08:00
|
|
|
testImplementation("org.hibernate.validator:hibernate-validator")
|
2023-08-02 06:56:50 +08:00
|
|
|
testImplementation("org.mozilla:rhino")
|
2023-02-20 00:43:31 +08:00
|
|
|
testImplementation("org.skyscreamer:jsonassert")
|
|
|
|
testImplementation("org.xmlunit:xmlunit-assertj")
|
|
|
|
testImplementation("org.xmlunit:xmlunit-matchers")
|
2023-08-02 06:56:50 +08:00
|
|
|
testRuntimeOnly("com.sun.activation:jakarta.activation")
|
|
|
|
testRuntimeOnly("com.sun.xml.bind:jaxb-core")
|
|
|
|
testRuntimeOnly("com.sun.xml.bind:jaxb-impl")
|
2022-09-14 21:36:08 +08:00
|
|
|
testRuntimeOnly("org.apache.httpcomponents.client5:httpclient5")
|
2023-08-02 06:56:50 +08:00
|
|
|
testRuntimeOnly("org.glassfish:jakarta.el")
|
2021-05-22 03:16:30 +08:00
|
|
|
testRuntimeOnly("org.jruby:jruby")
|
|
|
|
testRuntimeOnly("org.python:jython-standalone")
|
|
|
|
testRuntimeOnly("org.webjars:underscorejs")
|
2017-09-23 17:28:19 +08:00
|
|
|
}
|