spring-security-samples-xml-servletapi.gradle 693 B

123456789101112131415161718192021
  1. apply plugin: 'io.spring.convention.spring-sample-war'
  2. dependencies {
  3. compile project(':spring-security-core')
  4. compile project(':spring-security-web')
  5. compile 'javax.servlet.jsp.jstl:javax.servlet.jsp.jstl-api'
  6. compile 'org.springframework:spring-beans'
  7. compile 'org.springframework:spring-context'
  8. compile 'org.springframework:spring-web'
  9. compile 'org.springframework:spring-webmvc'
  10. providedCompile 'javax.servlet:javax.servlet-api'
  11. runtime project(':spring-security-config')
  12. runtime project(':spring-security-taglibs')
  13. runtime jstlDependencies
  14. runtime slf4jDependencies
  15. runtime 'org.springframework:spring-context-support'
  16. }
  17. eclipse.wtp.component.contextPath = 'servletapi'