build.gradle 929 B

123456789101112131415161718192021
  1. dependencies {
  2. compile project(":mybatis-plus-annotation")
  3. compile rootProject.ext.dependencies["mybatis"]
  4. compile rootProject.ext.dependencies["jsqlparser"]
  5. // compile rootProject.ext.dependencies["mybatis-spring"]
  6. provided rootProject.ext.dependencies["cglib"]
  7. provided rootProject.ext.dependencies["spring-aop"]
  8. // provided rootProject.ext.dependencies["spring-tx"]
  9. testCompile rootProject.ext.dependencies["mybatis-ehcache"]
  10. testCompile rootProject.ext.dependencies["logback-classic"]
  11. testCompile(rootProject.ext.dependencies["commons-dbcp2"]) {
  12. exclude module: "commons-logging"
  13. }
  14. testCompile rootProject.ext.dependencies["aspectjweaver"]
  15. testCompile rootProject.ext.dependencies["hikaricp"]
  16. testCompile rootProject.ext.dependencies["druid"]
  17. testCompile rootProject.ext.dependencies["fastjson"]
  18. testCompile rootProject.ext.dependencies["tomcatjdbc"]
  19. }