spring-security-messaging.gradle 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. plugins {
  2. id 'security-nullability'
  3. }
  4. apply plugin: 'io.spring.convention.spring-module'
  5. dependencies {
  6. management platform(project(":spring-security-dependencies"))
  7. api project(':spring-security-core')
  8. api 'org.springframework:spring-beans'
  9. api 'org.springframework:spring-context'
  10. api 'org.springframework:spring-core'
  11. api 'org.springframework:spring-expression'
  12. api 'org.springframework:spring-messaging'
  13. optional project(':spring-security-web')
  14. optional 'org.springframework:spring-websocket'
  15. optional 'io.projectreactor:reactor-core'
  16. optional 'jakarta.servlet:jakarta.servlet-api'
  17. testImplementation project(path: ':spring-security-core', configuration: 'tests')
  18. testImplementation "org.assertj:assertj-core"
  19. testImplementation "org.junit.jupiter:junit-jupiter-api"
  20. testImplementation "org.junit.jupiter:junit-jupiter-params"
  21. testImplementation "org.junit.jupiter:junit-jupiter-engine"
  22. testImplementation "org.mockito:mockito-core"
  23. testImplementation "org.mockito:mockito-junit-jupiter"
  24. testImplementation "org.springframework:spring-test"
  25. testImplementation "org.slf4j:slf4j-api"
  26. testImplementation "org.slf4j:log4j-over-slf4j"
  27. testImplementation "ch.qos.logback:logback-classic"
  28. testRuntimeOnly 'org.hsqldb:hsqldb'
  29. testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
  30. }