build.gradle 759 B

123456789101112131415
  1. ext{
  2. springBootVersion = "2.1.2.RELEASE"
  3. }
  4. dependencies {
  5. api project(":mybatis-plus")
  6. implementation(enforcedPlatform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}" as String))
  7. annotationProcessor "org.springframework.boot:spring-boot-configuration-processor:${springBootVersion}"
  8. annotationProcessor "org.springframework.boot:spring-boot-autoconfigure-processor:${springBootVersion}"
  9. api 'org.springframework.boot:spring-boot-autoconfigure'
  10. api 'org.springframework.boot:spring-boot-starter-jdbc'
  11. implementation 'org.springframework.boot:spring-boot-configuration-processor'
  12. implementation 'org.springframework.boot:spring-boot-autoconfigure-processor'
  13. }
  14. compileJava.dependsOn(processResources)