build.gradle 850 B

1234567891011121314
  1. dependencies {
  2. api project(":mybatis-plus")
  3. implementation(enforcedPlatform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}" as String))
  4. annotationProcessor "org.springframework.boot:spring-boot-configuration-processor:${springBootVersion}"
  5. annotationProcessor "org.springframework.boot:spring-boot-autoconfigure-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. testImplementation 'org.springframework.boot:spring-boot-starter-test'
  11. testImplementation "${lib.'mybatis-spring-boot-starter'}"
  12. }
  13. compileJava.dependsOn(processResources)