spring-orm.gradle 793 B

123456789101112131415161718192021
  1. description = "Spring Object/Relational Mapping"
  2. dependencies {
  3. compile(project(":spring-beans"))
  4. compile(project(":spring-core"))
  5. compile(project(":spring-jdbc"))
  6. compile(project(":spring-tx"))
  7. optional(project(":spring-aop"))
  8. optional(project(":spring-context"))
  9. optional(project(":spring-web"))
  10. optional("org.eclipse.persistence:org.eclipse.persistence.jpa")
  11. optional("org.hibernate:hibernate-core")
  12. optional("javax.servlet:javax.servlet-api:3.1.0")
  13. testCompile(testFixtures(project(":spring-beans")))
  14. testCompile(testFixtures(project(":spring-context")))
  15. testCompile(testFixtures(project(":spring-core")))
  16. testCompile(testFixtures(project(":spring-web")))
  17. testCompile("org.aspectj:aspectjweaver")
  18. testCompile("org.hsqldb:hsqldb")
  19. testRuntime("javax.xml.bind:jaxb-api")
  20. }