build.gradle 796 B

1234567891011121314151617181920212223
  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.0"
  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-boot-starter:${APP_VERSION}"
  15. dependency "com.baomidou:mybatis-plus-boot-starter-test:${APP_VERSION}"
  16. dependency "com.baomidou:mybatis-plus-core:${APP_VERSION}"
  17. dependency "com.baomidou:mybatis-plus-extension:${APP_VERSION}"
  18. dependency "com.baomidou:mybatis-plus-generator:${APP_VERSION}"
  19. }
  20. }