2
0

spring-security-web.gradle 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. apply plugin: 'io.spring.convention.spring-module'
  2. dependencies {
  3. compile project(':spring-security-core')
  4. compile springCoreDependency
  5. compile 'org.springframework:spring-aop'
  6. compile 'org.springframework:spring-beans'
  7. compile 'org.springframework:spring-context'
  8. compile 'org.springframework:spring-expression'
  9. compile 'org.springframework:spring-web'
  10. optional 'com.fasterxml.jackson.core:jackson-databind'
  11. optional 'io.projectreactor:reactor-core'
  12. optional 'org.springframework:spring-jdbc'
  13. optional 'org.springframework:spring-tx'
  14. optional 'org.springframework:spring-webflux'
  15. optional 'org.springframework:spring-webmvc'
  16. provided 'javax.servlet:javax.servlet-api'
  17. testCompile project(path: ':spring-security-core', configuration: 'tests')
  18. testCompile 'commons-codec:commons-codec'
  19. testCompile 'io.projectreactor:reactor-test'
  20. testCompile 'javax.xml.bind:jaxb-api'
  21. testCompile 'org.codehaus.groovy:groovy-all'
  22. testCompile 'org.skyscreamer:jsonassert'
  23. testCompile 'org.springframework:spring-webflux'
  24. testCompile powerMock2Dependencies
  25. testCompile spockDependencies
  26. testRuntime 'org.hsqldb:hsqldb'
  27. }