2023-09-13 16:23:30 +08:00

22 lines
1.1 KiB
Groovy

dependencies {
api project(":mybatis-plus")
api "${lib."mybatis-spring"}"
api project(":spring-boot-starter:mybatis-plus-spring-boot-autoconfigure")
implementation platform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}")
annotationProcessor "org.springframework.boot:spring-boot-autoconfigure-processor:${springBootVersion}"
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor:${springBootVersion}"
api "org.springframework.boot:spring-boot-autoconfigure"
api "org.springframework.boot:spring-boot-starter-jdbc"
implementation "org.springframework.boot:spring-boot-configuration-processor"
implementation "org.springframework.boot:spring-boot-autoconfigure-processor"
implementation "${lib['mybatis-thymeleaf']}"
implementation "${lib.'mybatis-velocity'}"
implementation "${lib.'mybatis-freemarker'}"
implementation "${lib.'spring-cloud-commons'}"
testImplementation "org.springframework.boot:spring-boot-starter-test"
testImplementation "${lib.'mybatis-spring-boot-starter'}"
testImplementation "${lib.h2}"
}
compileJava.dependsOn(processResources)