24 lines
615 B
Groovy
24 lines
615 B
Groovy
dependencies {
|
|
|
|
// APIS
|
|
compile "javax.servlet:servlet-api:2.5"
|
|
|
|
// JPA
|
|
compile "org.hibernate.javax.persistence:hibernate-jpa-2.0-api:1.0.1.Final"
|
|
|
|
// JSR 303 Validation
|
|
compile "javax.validation:validation-api:1.0.0.GA"
|
|
runtime "org.hibernate:hibernate-validator-annotation-processor:4.1.0.Final"
|
|
|
|
// Spring
|
|
compile "org.springframework:spring-webmvc:$springVersion"
|
|
runtime "cglib:cglib-nodep:2.2.2"
|
|
|
|
// Repository Exporter support
|
|
compile project(":spring-data-rest-repository")
|
|
|
|
runtime "org.hibernate:hibernate-entitymanager:$hibernateVersion"
|
|
runtime "org.hsqldb:hsqldb:2.2.8"
|
|
|
|
}
|