spring-security-cas.gradle 555 B

123456789101112131415161718
  1. apply plugin: 'io.spring.convention.spring-module'
  2. dependencies {
  3. compile project(':spring-security-core')
  4. compile project(':spring-security-web')
  5. compile 'org.jasig.cas.client:cas-client-core'
  6. compile 'org.springframework:spring-beans'
  7. compile 'org.springframework:spring-context'
  8. compile 'org.springframework:spring-core'
  9. compile 'org.springframework:spring-web'
  10. optional 'com.fasterxml.jackson.core:jackson-databind'
  11. optional 'net.sf.ehcache:ehcache'
  12. provided 'javax.servlet:javax.servlet-api'
  13. testCompile 'org.skyscreamer:jsonassert'
  14. }