integration-tests.gradle 985 B

123456789101112131415161718192021222324252627282930
  1. description = "Spring Integration Tests"
  2. dependencies {
  3. testCompile(project(":spring-aop"))
  4. testCompile(project(":spring-beans"))
  5. testCompile(project(":spring-context"))
  6. testCompile(project(":spring-core"))
  7. testCompile(testFixtures(project(":spring-aop")))
  8. testCompile(testFixtures(project(":spring-beans")))
  9. testCompile(testFixtures(project(":spring-core")))
  10. testCompile(testFixtures(project(":spring-tx")))
  11. testCompile(project(":spring-expression"))
  12. testCompile(project(":spring-jdbc"))
  13. testCompile(project(":spring-orm"))
  14. testCompile(project(":spring-test"))
  15. testCompile(project(":spring-tx"))
  16. testCompile(project(":spring-web"))
  17. testCompile("javax.inject:javax.inject")
  18. testCompile("javax.resource:javax.resource-api")
  19. testCompile("javax.servlet:javax.servlet-api")
  20. testCompile("org.aspectj:aspectjweaver")
  21. testCompile("org.hsqldb:hsqldb")
  22. testCompile("org.hibernate:hibernate-core")
  23. }
  24. normalization {
  25. runtimeClasspath {
  26. ignore "META-INF/MANIFEST.MF"
  27. }
  28. }