build.gradle 1.5 KB

123456789101112131415161718192021222324252627282930313233
  1. def common = [
  2. rootProject.ext.dependencies["spring-context-support"],
  3. rootProject.ext.dependencies["spring-jdbc"]
  4. ]
  5. dependencies {
  6. compile project(":mybatis-plus-support")
  7. compile rootProject.ext.dependencies["jsqlparser"]
  8. compile rootProject.ext.dependencies["mybatis-spring"]
  9. compile rootProject.ext.dependencies["mybatis"]
  10. compileOnly common
  11. testCompile common
  12. testCompile rootProject.ext.dependencies["servlet-api"]
  13. testCompile rootProject.ext.dependencies["mybatis-ehcache"]
  14. testCompile rootProject.ext.dependencies["logback-classic"]
  15. testCompile rootProject.ext.dependencies["junit"]
  16. testCompile (rootProject.ext.dependencies["commons-dbcp2"]){
  17. exclude module: "commons-logging"
  18. }
  19. testCompile rootProject.ext.dependencies["sqlserver"]
  20. testCompile rootProject.ext.dependencies["postgresql"]
  21. testCompile rootProject.ext.dependencies["oracle"]
  22. testCompile rootProject.ext.dependencies["h2"]
  23. testCompile rootProject.ext.dependencies["mysql"]
  24. testCompile rootProject.ext.dependencies["slf4j-api"]
  25. testCompile rootProject.ext.dependencies["spring-test"]
  26. testCompile rootProject.ext.dependencies["spring-webmvc"]
  27. testCompile rootProject.ext.dependencies["sqlserver"]
  28. testCompile rootProject.ext.dependencies["aspectjweaver"]
  29. testCompile rootProject.ext.dependencies["lombok"]
  30. testCompile rootProject.ext.dependencies["hikaricp"]
  31. testCompile rootProject.ext.dependencies["druid"]
  32. testCompile rootProject.ext.dependencies["fastjson"]
  33. }