spring-webmvc.gradle 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. description = "Spring Web MVC"
  2. apply plugin: "kotlin"
  3. dependencies {
  4. compile(project(":spring-aop"))
  5. compile(project(":spring-beans"))
  6. compile(project(":spring-context"))
  7. compile(project(":spring-core"))
  8. compile(project(":spring-expression"))
  9. compile(project(":spring-web"))
  10. compileOnly("javax.servlet:javax.servlet-api")
  11. optional(project(":spring-context-support")) // for FreeMarker support
  12. optional(project(":spring-oxm"))
  13. optional("javax.servlet.jsp:javax.servlet.jsp-api")
  14. optional("javax.servlet.jsp.jstl:javax.servlet.jsp.jstl-api")
  15. optional("javax.el:javax.el-api")
  16. optional("javax.xml.bind:jaxb-api")
  17. optional("org.webjars:webjars-locator-core")
  18. optional("com.rometools:rome")
  19. optional("com.github.librepdf:openpdf")
  20. optional("org.apache.poi:poi-ooxml")
  21. optional("org.freemarker:freemarker")
  22. optional("com.fasterxml.jackson.core:jackson-databind")
  23. optional("com.fasterxml.jackson.dataformat:jackson-dataformat-xml")
  24. optional("com.fasterxml.jackson.dataformat:jackson-dataformat-smile")
  25. optional("com.fasterxml.jackson.dataformat:jackson-dataformat-cbor")
  26. optional("org.apache.tiles:tiles-api")
  27. optional("org.apache.tiles:tiles-core")
  28. optional("org.apache.tiles:tiles-servlet")
  29. optional("org.apache.tiles:tiles-jsp")
  30. optional("org.apache.tiles:tiles-el")
  31. optional("org.apache.tiles:tiles-extras")
  32. optional("org.codehaus.groovy:groovy-templates")
  33. optional("org.jetbrains.kotlin:kotlin-reflect")
  34. optional("org.jetbrains.kotlin:kotlin-stdlib")
  35. optional("org.reactivestreams:reactive-streams")
  36. testCompile(testFixtures(project(":spring-beans")))
  37. testCompile(testFixtures(project(":spring-core")))
  38. testCompile(testFixtures(project(":spring-context")))
  39. testCompile(testFixtures(project(":spring-web")))
  40. testCompile("javax.servlet:javax.servlet-api")
  41. testCompile("org.eclipse.jetty:jetty-servlet") {
  42. exclude group: "javax.servlet", module: "javax.servlet"
  43. }
  44. testCompile("org.eclipse.jetty:jetty-server") {
  45. exclude group: "javax.servlet", module: "javax.servlet"
  46. }
  47. testCompile("org.apache.httpcomponents:httpclient")
  48. testCompile("commons-fileupload:commons-fileupload")
  49. testCompile("commons-io:commons-io")
  50. testCompile("joda-time:joda-time")
  51. testCompile("org.mozilla:rhino")
  52. testCompile("dom4j:dom4j")
  53. testCompile("jaxen:jaxen")
  54. testCompile("org.xmlunit:xmlunit-assertj")
  55. testCompile("org.xmlunit:xmlunit-matchers")
  56. testCompile("org.hibernate:hibernate-validator")
  57. testCompile("javax.validation:validation-api")
  58. testCompile("io.projectreactor:reactor-core")
  59. testCompile("io.reactivex:rxjava")
  60. testCompile("io.reactivex:rxjava-reactive-streams")
  61. testCompile("io.reactivex.rxjava2:rxjava")
  62. testCompile("org.jetbrains.kotlin:kotlin-script-runtime")
  63. testRuntime("org.jetbrains.kotlin:kotlin-scripting-jsr223-embeddable")
  64. testRuntime("org.jruby:jruby")
  65. testRuntime("org.python:jython-standalone")
  66. testRuntime("org.webjars:underscorejs")
  67. testRuntime("org.glassfish:javax.el")
  68. testRuntime("com.sun.xml.bind:jaxb-core")
  69. testRuntime("com.sun.xml.bind:jaxb-impl")
  70. testRuntime("com.sun.activation:javax.activation")
  71. }