2023-09-14 10:22:01 +08:00

14 lines
516 B
Groovy

compileJava {
options.release = 17
}
dependencies {
api project(":spring-boot-starter:mybatis-plus-spring-boot3-starter")
api project(":spring-boot-starter:mybatis-plus-spring-boot-test-autoconfigure")
implementation platform("org.springframework.boot:spring-boot-dependencies:${springBoot3Version}")
api "org.springframework.boot:spring-boot-autoconfigure"
api "org.springframework.boot:spring-boot-starter-test"
api "org.springframework:spring-tx"
testImplementation "${lib.h2}"
}