build.gradle 861 B

123456789101112131415161718192021222324
  1. apply plugin: 'java'
  2. sourceCompatibility = 1.8
  3. dependencies {
  4. compile project(":mybatis-plus-annotation")
  5. compile rootProject.ext.dependencies["mybatis"]
  6. compile rootProject.ext.dependencies["jsqlparser"]
  7. provided rootProject.ext.dependencies["cglib"]
  8. provided rootProject.ext.dependencies["spring-aop"]
  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. }