1234567891011121314151617181920212223242526272829 |
- apply plugin: 'io.spring.convention.spring-sample-war'
- dependencies {
- compile project(':spring-security-config')
- compile project(':spring-security-web')
- compile 'javax.validation:validation-api'
- compile 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:2.0.4'
- compile 'org.eclipse.persistence:javax.persistence'
- compile('org.hibernate:hibernate-entitymanager') {
- exclude group:'javassist', module: 'javassist'
- }
- compile 'org.hibernate:hibernate-validator'
- compile 'org.hsqldb:hsqldb'
- compile('org.springframework.data:spring-data-jpa') {
- exclude group:'org.aspectj', module:'aspectjrt'
- }
- compile 'org.springframework:spring-aop'
- compile 'org.springframework:spring-aspects'
- compile 'org.springframework:spring-beans'
- compile 'org.springframework:spring-context'
- compile 'org.springframework:spring-core'
- compile 'org.springframework:spring-instrument'
- compile 'org.springframework:spring-orm'
- compile 'org.springframework:spring-tx'
- compile 'org.springframework:spring-webmvc'
- compile 'org.thymeleaf:thymeleaf-spring5'
- provided 'javax.servlet:javax.servlet-api'
- }
|