build.gradle 1.3 KB

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