tutorial.gradle 666 B

12345678910111213141516171819
  1. // Tutorial sample build file
  2. apply id: 'war'
  3. apply id: 'jetty'
  4. dependencies {
  5. providedCompile 'javax.servlet:servlet-api:2.5@jar'
  6. compile project(':spring-security-core'),
  7. "org.springframework:spring-core:$springVersion",
  8. "org.springframework:spring-beans:$springVersion",
  9. "org.springframework:spring-web:$springVersion",
  10. "org.springframework:spring-webmvc:$springVersion",
  11. "org.aspectj:aspectjrt:$aspectjVersion"
  12. runtime project(':spring-security-web'),
  13. project(':spring-security-config'),
  14. project(':spring-security-taglibs'),
  15. 'log4j:log4j:1.2.15@jar'
  16. }