build.gradle 1.5 KB

12345678910111213141516171819202122232425262728293031
  1. def common = [
  2. rootProject.ext.dependencies["spring-context-support"],
  3. rootProject.ext.dependencies["spring-jdbc"]
  4. ]
  5. dependencies {
  6. compile project(":mybatis-plus-api")
  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. testCompileOnly 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. testCompile rootProject.ext.dependencies["commons-pool2"]
  18. testCompile rootProject.ext.dependencies["sqlserver"]
  19. testCompile rootProject.ext.dependencies["postgresql"]
  20. testCompile rootProject.ext.dependencies["oracle"]
  21. testCompile rootProject.ext.dependencies["h2"]
  22. testCompile rootProject.ext.dependencies["mysql"]
  23. testCompile rootProject.ext.dependencies["slf4j-api"]
  24. testCompile rootProject.ext.dependencies["spring-test"]
  25. testCompile rootProject.ext.dependencies["spring-webmvc"]
  26. testCompile rootProject.ext.dependencies["sqlserver"]
  27. testCompile rootProject.ext.dependencies["aspectjweaver"]
  28. testCompile rootProject.ext.dependencies["servlet-api"]
  29. testCompile rootProject.ext.dependencies["lombok"]
  30. testCompile rootProject.ext.dependencies["hikaricp"]
  31. }