spring-security-messaging.gradle 763 B

1234567891011121314151617181920212223
  1. apply plugin: 'io.spring.convention.spring-module'
  2. dependencies {
  3. compile project(':spring-security-core')
  4. compile 'aopalliance:aopalliance'
  5. compile 'org.springframework:spring-beans'
  6. compile 'org.springframework:spring-context'
  7. compile 'org.springframework:spring-core'
  8. compile 'org.springframework:spring-expression'
  9. compile 'org.springframework:spring-messaging'
  10. optional project(':spring-security-web')
  11. optional 'org.springframework:spring-websocket'
  12. optional 'javax.servlet:javax.servlet-api'
  13. testCompile project(path: ':spring-security-core', configuration: 'tests')
  14. testCompile 'commons-codec:commons-codec'
  15. testCompile powerMockDependencies
  16. testCompile slf4jDependencies
  17. testCompile spockDependencies
  18. testRuntime 'org.hsqldb:hsqldb'
  19. }