build.gradle 788 B

12345678910111213
  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. }
  12. compileJava.dependsOn(processResources)