build.gradle 976 B

1234567891011121314151617
  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. testImplementation "org.springframework.boot:spring-boot-starter-test"
  14. testImplementation "${lib.'mybatis-spring-boot-starter'}"
  15. }
  16. compileJava.dependsOn(processResources)