30 lines
1.1 KiB
Groovy
30 lines
1.1 KiB
Groovy
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'
|
|
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'
|
|
|
|
providedCompile 'javax.servlet:javax.servlet-api'
|
|
}
|