2016-03-14 16:38:42 +10:00
|
|
|
sonarqube.skipProject = true
|
2013-08-01 14:14:18 -05:00
|
|
|
|
|
|
|
dependencies {
|
2016-10-17 09:12:24 -05:00
|
|
|
provided "javax.servlet:javax.servlet-api:$servletApiVersion"
|
2013-08-01 14:14:18 -05:00
|
|
|
|
2015-03-23 11:14:26 -05:00
|
|
|
compile project(":spring-security-web"),
|
|
|
|
project(":spring-security-config"),
|
|
|
|
"org.hsqldb:hsqldb:$hsqlVersion",
|
2016-10-14 17:36:15 -05:00
|
|
|
"javax.validation:validation-api:$validationApiVersion",
|
|
|
|
"org.hibernate:hibernate-validator:$hibernateValidatorVersion",
|
2015-03-23 11:14:26 -05:00
|
|
|
"org.springframework:spring-webmvc:$springVersion",
|
|
|
|
"org.springframework:spring-orm:$springVersion",
|
|
|
|
"org.springframework:spring-context:$springVersion",
|
|
|
|
"org.springframework:spring-aop:$springVersion",
|
|
|
|
"org.springframework:spring-tx:$springVersion",
|
|
|
|
"org.springframework:spring-beans:$springVersion",
|
|
|
|
"org.springframework:spring-instrument:$springVersion",
|
|
|
|
"org.springframework:spring-core:$springVersion",
|
|
|
|
"org.springframework:spring-aspects:$springVersion",
|
|
|
|
"org.thymeleaf:thymeleaf-spring4:$thymeleafVersion",
|
2016-10-17 09:12:24 -05:00
|
|
|
"nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:2.0.4",
|
|
|
|
"org.eclipse.persistence:javax.persistence:$javaPersistenceVersion"
|
|
|
|
compile("org.hibernate:hibernate-entitymanager:$hibernateVersion") {
|
2015-03-23 11:14:26 -05:00
|
|
|
exclude group:'javassist', module: 'javassist'
|
2016-10-17 09:12:24 -05:00
|
|
|
}
|
|
|
|
compile("org.springframework.data:spring-data-jpa:$springDataJpaVersion") {
|
2015-03-23 11:14:26 -05:00
|
|
|
exclude group:'org.aspectj', module:'aspectjrt'
|
2016-10-17 09:12:24 -05:00
|
|
|
}
|
2013-08-01 14:14:18 -05:00
|
|
|
}
|