2
0

spring-security-messaging.gradle 729 B

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