build.gradle 1.1 KB

123456789101112131415161718192021
  1. dependencies {
  2. api project(":mybatis-plus")
  3. api "${lib."mybatis-spring"}"
  4. api project(":spring-boot-starter:mybatis-plus-spring-boot-autoconfigure")
  5. implementation platform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}")
  6. annotationProcessor "org.springframework.boot:spring-boot-autoconfigure-processor:${springBootVersion}"
  7. annotationProcessor "org.springframework.boot:spring-boot-configuration-processor:${springBootVersion}"
  8. api "org.springframework.boot:spring-boot-autoconfigure"
  9. api "org.springframework.boot:spring-boot-starter-jdbc"
  10. implementation "org.springframework.boot:spring-boot-configuration-processor"
  11. implementation "org.springframework.boot:spring-boot-autoconfigure-processor"
  12. implementation "${lib['mybatis-thymeleaf']}"
  13. implementation "${lib.'mybatis-velocity'}"
  14. implementation "${lib.'mybatis-freemarker'}"
  15. implementation "${lib.'spring-cloud-commons'}"
  16. testImplementation "org.springframework.boot:spring-boot-starter-test"
  17. testImplementation "${lib.'mybatis-spring-boot-starter'}"
  18. testImplementation "${lib.h2}"
  19. }
  20. compileJava.dependsOn(processResources)