build.gradle 912 B

123456789101112131415
  1. dependencies {
  2. api project(":mybatis-plus-core")
  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. implementation "${lib.aspectjrt}"
  8. implementation 'org.springframework.boot:spring-boot-starter-web'
  9. implementation 'org.springframework.boot:spring-boot-starter-amqp'
  10. implementation 'org.springframework.boot:spring-boot-configuration-processor'
  11. implementation 'org.springframework.boot:spring-boot-autoconfigure-processor'
  12. testImplementation 'org.springframework.boot:spring-boot-starter-test'
  13. }
  14. compileJava.dependsOn(processResources)