build.gradle 1.1 KB

123456789101112131415161718192021222324252627
  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-boot-starter:${APP_VERSION}"
  18. dependency "com.baomidou:mybatis-plus-boot-starter-test:${APP_VERSION}"
  19. dependency "com.baomidou:mybatis-plus-spring-boot-autoconfigure:${APP_VERSION}"
  20. dependency "com.baomidou:mybatis-plus-spring-boot-test-autoconfigure:${APP_VERSION}"
  21. dependency "com.baomidou:mybatis-plus-spring-boot3-starter:${APP_VERSION}"
  22. dependency "com.baomidou:mybatis-plus-spring-boot3-starter-test:${APP_VERSION}"
  23. }
  24. }