build.gradle 516 B

12345678910111213
  1. compileJava {
  2. options.release = 17
  3. }
  4. dependencies {
  5. api project(":spring-boot-starter:mybatis-plus-spring-boot3-starter")
  6. api project(":spring-boot-starter:mybatis-plus-spring-boot-test-autoconfigure")
  7. implementation platform("org.springframework.boot:spring-boot-dependencies:${springBoot3Version}")
  8. api "org.springframework.boot:spring-boot-autoconfigure"
  9. api "org.springframework.boot:spring-boot-starter-test"
  10. api "org.springframework:spring-tx"
  11. testImplementation "${lib.h2}"
  12. }