spring-security-web.gradle 1.2 KB

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