2
0

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

12345678910111213141516171819202122232425
  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'
  18. gretty {
  19. logbackConfigFile = "src/main/resources/logback.xml"
  20. }