build.gradle 529 B

1234567891011
  1. ext{
  2. springBootVersion = "2.1.0.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. api 'org.springframework.boot:spring-boot-autoconfigure'
  9. api 'org.springframework.boot:spring-boot-starter-jdbc'
  10. implementation 'org.springframework.boot:spring-boot-configuration-processor'
  11. }