Files
2012-04-23 10:56:50 -05:00

25 lines
639 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")
// Testing
testRuntime "org.hibernate:hibernate-entitymanager:$hibernateVersion"
testRuntime "org.hsqldb:hsqldb:1.8.0.10"
}