build.gradle 1.0 KB

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