build.gradle 979 B

1234567891011121314151617181920212223242526
  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. // compile rootProject.ext.dependencies["mybatis-spring"]
  8. provided rootProject.ext.dependencies["cglib"]
  9. provided rootProject.ext.dependencies["spring-aop"]
  10. // provided rootProject.ext.dependencies["spring-tx"]
  11. testCompile rootProject.ext.dependencies["mybatis-ehcache"]
  12. testCompile rootProject.ext.dependencies["logback-classic"]
  13. testCompile(rootProject.ext.dependencies["commons-dbcp2"]) {
  14. exclude module: "commons-logging"
  15. }
  16. testCompile rootProject.ext.dependencies["aspectjweaver"]
  17. testCompile rootProject.ext.dependencies["hikaricp"]
  18. testCompile rootProject.ext.dependencies["druid"]
  19. testCompile rootProject.ext.dependencies["fastjson"]
  20. testCompile rootProject.ext.dependencies["tomcatjdbc"]
  21. }