build.gradle 920 B

12345678910111213141516171819202122232425
  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. testCompile rootProject.ext.dependencies["mybatis-ehcache"]
  11. testCompile rootProject.ext.dependencies["logback-classic"]
  12. testCompile(rootProject.ext.dependencies["commons-dbcp2"]) {
  13. exclude module: "commons-logging"
  14. }
  15. testCompile rootProject.ext.dependencies["aspectjweaver"]
  16. testCompile rootProject.ext.dependencies["hikaricp"]
  17. testCompile rootProject.ext.dependencies["druid"]
  18. testCompile rootProject.ext.dependencies["fastjson"]
  19. testCompile rootProject.ext.dependencies["tomcatjdbc"]
  20. }