build.gradle 959 B

123456789101112131415161718
  1. ext{
  2. springBootVersion = "2.1.2.RELEASE"
  3. }
  4. dependencies {
  5. api project(":mybatis-plus-core")
  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. implementation "${lib.aspectjrt}"
  11. implementation 'org.springframework.boot:spring-boot-starter-web'
  12. implementation 'org.springframework.boot:spring-boot-starter-amqp'
  13. implementation 'org.springframework.boot:spring-boot-configuration-processor'
  14. implementation 'org.springframework.boot:spring-boot-autoconfigure-processor'
  15. testImplementation 'org.springframework.boot:spring-boot-starter-test'
  16. }
  17. compileJava.dependsOn(processResources)