build.gradle 835 B

12345678910111213141516
  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. testImplementation 'org.springframework.boot:spring-boot-starter-test'
  14. }
  15. compileJava.dependsOn(processResources)