build.gradle 1.5 KB

12345678910111213141516171819202122232425262728293031
  1. buildscript {
  2. repositories {
  3. maven { url "https://plugins.gradle.org/m2/" }
  4. maven { url "https://repo.spring.io/plugins-release" }
  5. }
  6. dependencies {
  7. classpath "io.spring.gradle:dependency-management-plugin:1.1.6"
  8. }
  9. }
  10. apply plugin: "io.spring.dependency-management"
  11. dependencyManagement {
  12. dependencies {
  13. dependency "com.baomidou:mybatis-plus-annotation:${APP_VERSION}"
  14. dependency "com.baomidou:mybatis-plus-core:${APP_VERSION}"
  15. dependency "com.baomidou:mybatis-plus-extension:${APP_VERSION}"
  16. dependency "com.baomidou:mybatis-plus-generator:${APP_VERSION}"
  17. dependency "com.baomidou:mybatis-plus-solon-plugin:${APP_VERSION}"
  18. dependency "com.baomidou:mybatis-plus-spring:${APP_VERSION}"
  19. dependency "com.baomidou:mybatis-plus-boot-starter:${APP_VERSION}"
  20. dependency "com.baomidou:mybatis-plus-boot-starter-test:${APP_VERSION}"
  21. dependency "com.baomidou:mybatis-plus-spring-boot-autoconfigure:${APP_VERSION}"
  22. dependency "com.baomidou:mybatis-plus-spring-boot-test-autoconfigure:${APP_VERSION}"
  23. dependency "com.baomidou:mybatis-plus-spring-boot3-starter:${APP_VERSION}"
  24. dependency "com.baomidou:mybatis-plus-spring-boot3-starter-test:${APP_VERSION}"
  25. dependency "com.baomidou:mybatis-plus-jsqlparser:${APP_VERSION}"
  26. dependency "com.baomidou:mybatis-plus-jsqlparser-4.9:${APP_VERSION}"
  27. dependency "com.baomidou:mybatis-plus-jsqlparser-5.0:${APP_VERSION}"
  28. }
  29. }