2
0

spring-security-messaging.gradle 1.2 KB

123456789101112131415161718192021222324252627282930
  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 'org.springframework:spring-beans'
  6. api 'org.springframework:spring-context'
  7. api 'org.springframework:spring-core'
  8. api 'org.springframework:spring-expression'
  9. api 'org.springframework:spring-messaging'
  10. optional project(':spring-security-web')
  11. optional 'org.springframework:spring-websocket'
  12. optional 'io.projectreactor:reactor-core'
  13. optional 'jakarta.servlet:jakarta.servlet-api'
  14. testImplementation project(path: ':spring-security-core', configuration: 'tests')
  15. testImplementation "org.assertj:assertj-core"
  16. testImplementation "org.junit.jupiter:junit-jupiter-api"
  17. testImplementation "org.junit.jupiter:junit-jupiter-params"
  18. testImplementation "org.junit.jupiter:junit-jupiter-engine"
  19. testImplementation "org.mockito:mockito-core"
  20. testImplementation "org.mockito:mockito-junit-jupiter"
  21. testImplementation "org.springframework:spring-test"
  22. testImplementation "org.slf4j:slf4j-api"
  23. testImplementation "org.slf4j:log4j-over-slf4j"
  24. testImplementation "ch.qos.logback:logback-classic"
  25. testRuntimeOnly 'org.hsqldb:hsqldb'
  26. }