spring-security-samples-javaconfig-messages.gradle 1.1 KB

1234567891011121314151617181920212223242526272829
  1. apply plugin: 'io.spring.convention.spring-sample-war'
  2. dependencies {
  3. compile project(':spring-security-config')
  4. compile project(':spring-security-web')
  5. compile 'javax.validation:validation-api'
  6. compile 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:2.0.4'
  7. compile 'org.eclipse.persistence:javax.persistence'
  8. compile('org.hibernate:hibernate-entitymanager') {
  9. exclude group:'javassist', module: 'javassist'
  10. }
  11. compile 'org.hibernate:hibernate-validator'
  12. compile 'org.hsqldb:hsqldb'
  13. compile('org.springframework.data:spring-data-jpa') {
  14. exclude group:'org.aspectj', module:'aspectjrt'
  15. }
  16. compile 'org.springframework:spring-aop'
  17. compile 'org.springframework:spring-aspects'
  18. compile 'org.springframework:spring-beans'
  19. compile 'org.springframework:spring-context'
  20. compile 'org.springframework:spring-core'
  21. compile 'org.springframework:spring-instrument'
  22. compile 'org.springframework:spring-orm'
  23. compile 'org.springframework:spring-tx'
  24. compile 'org.springframework:spring-webmvc'
  25. compile 'org.thymeleaf:thymeleaf-spring5'
  26. provided 'javax.servlet:javax.servlet-api'
  27. }