build.gradle 925 B

12345678910111213141516171819202122232425
  1. dependencies {
  2. api project(":mybatis-plus-extension")
  3. testImplementation "${lib.'spring-web'}"
  4. testImplementation "${lib.'javax.servlet-api'}"
  5. testImplementation "${lib.'spring-test'}"
  6. testImplementation "${lib."jackson"}"
  7. testImplementation "${lib."fastjson"}"
  8. testImplementation "${lib."gson"}"
  9. testImplementation "${lib.h2}"
  10. testImplementation "${lib.sqlserver}"
  11. testImplementation "${lib.postgresql}"
  12. testImplementation lib.oracle as ConfigurableFileTree
  13. testImplementation "${lib.mysql}"
  14. testImplementation "${lib.'mybatis-ehcache'}"
  15. testImplementation "${lib.'mybatis-redis'}"
  16. testImplementation "${lib.'spring-context-support'}"
  17. testImplementation "${lib.'spring-jdbc'}"
  18. testImplementation "javax.annotation:javax.annotation-api:1.3.2"
  19. testImplementation "${lib.cglib}"
  20. // testCompile ('org.apache.phoenix:phoenix-core:5.0.0-HBase-2.0')
  21. }