build.gradle 1.3 KB

12345678910111213141516171819202122232425262728
  1. apply plugin: 'org.jetbrains.kotlin.jvm'
  2. dependencies {
  3. compile project(":mybatis-plus-core")
  4. compile rootProject.ext.dependencies["mybatis-spring"]
  5. compile rootProject.ext.dependencies["mybatis"]
  6. compile rootProject.ext.dependencies["kotlin-stdlib-jdk8"], optional
  7. compile rootProject.ext.dependencies["kotlin-reflect"], optional
  8. compile rootProject.ext.dependencies["spring-context-support"], optional
  9. compile rootProject.ext.dependencies["spring-jdbc"], optional
  10. compile rootProject.ext.dependencies["slf4j-api"], optional
  11. testCompile rootProject.ext.dependencies["spring-web"]
  12. testCompile rootProject.ext.dependencies["javax.servlet-api"]
  13. testCompile rootProject.ext.dependencies["spring-test"]
  14. testCompile rootProject.ext.dependencies["fastjson"]
  15. testCompile rootProject.ext.dependencies["hikaricp"]
  16. testCompile rootProject.ext.dependencies["commons-dbcp2"]
  17. testCompile rootProject.ext.dependencies["druid"]
  18. testCompile rootProject.ext.dependencies["tomcatjdbc"]
  19. testCompile rootProject.ext.dependencies["h2"]
  20. testCompile rootProject.ext.dependencies["sqlserver"]
  21. testCompile rootProject.ext.dependencies["postgresql"]
  22. testCompile rootProject.ext.dependencies["oracle"]
  23. testCompile rootProject.ext.dependencies["mysql"]
  24. }