spring-security-web.gradle 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. apply plugin: 'io.spring.convention.spring-module'
  2. dependencies {
  3. api platform(project(":spring-security-dependencies"))
  4. api project(':spring-security-core')
  5. api 'org.springframework:spring-core'
  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.hamcrest:hamcrest'
  23. testImplementation 'org.mockito:mockito-core'
  24. testImplementation 'org.mockito:mockito-inline'
  25. testImplementation 'org.skyscreamer:jsonassert'
  26. testImplementation 'org.springframework:spring-webflux'
  27. testImplementation 'org.synchronoss.cloud:nio-multipart-parser'
  28. testImplementation "org.assertj:assertj-core"
  29. testImplementation "org.junit.jupiter:junit-jupiter-api"
  30. testImplementation "org.junit.jupiter:junit-jupiter-params"
  31. testImplementation "org.junit.jupiter:junit-jupiter-engine"
  32. testImplementation "org.mockito:mockito-core"
  33. testImplementation "org.mockito:mockito-junit-jupiter"
  34. testImplementation "org.springframework:spring-test"
  35. testRuntimeOnly 'org.hsqldb:hsqldb'
  36. }