spring-security-samples-xml-contacts.gradle 931 B

12345678910111213141516171819202122232425262728
  1. apply plugin: 'io.spring.convention.spring-sample-war'
  2. dependencies {
  3. compile project(':spring-security-acl')
  4. compile project(':spring-security-core')
  5. compile slf4jDependencies
  6. compile 'org.springframework:spring-aop'
  7. compile 'org.springframework:spring-beans'
  8. compile 'org.springframework:spring-context'
  9. compile 'org.springframework:spring-jdbc'
  10. compile 'org.springframework:spring-tx'
  11. compile 'org.springframework:spring-web'
  12. compile 'org.springframework:spring-webmvc'
  13. providedCompile 'javax.servlet:javax.servlet-api'
  14. runtime project(':spring-security-config')
  15. runtime project(':spring-security-taglibs')
  16. runtime project(':spring-security-web')
  17. runtime jstlDependencies
  18. runtime 'ch.qos.logback:logback-classic'
  19. runtime 'net.sf.ehcache:ehcache'
  20. runtime 'org.hsqldb:hsqldb'
  21. runtime 'org.slf4j:jcl-over-slf4j'
  22. runtime 'org.springframework:spring-context-support'
  23. integrationTestCompile gebDependencies
  24. }