build.gradle 1.0 KB

12345678910111213141516171819
  1. ext{
  2. springBootVersion = "2.1.2.RELEASE"
  3. }
  4. dependencies {
  5. implementation(enforcedPlatform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}" as String))
  6. annotationProcessor "org.springframework.boot:spring-boot-configuration-processor:${springBootVersion}"
  7. annotationProcessor "org.springframework.boot:spring-boot-autoconfigure-processor:${springBootVersion}"
  8. api 'org.springframework.boot:spring-boot-autoconfigure'
  9. api 'org.springframework.boot:spring-boot-starter-jdbc'
  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-starter-data-redis'
  14. implementation 'org.springframework.boot:spring-boot-configuration-processor'
  15. implementation 'org.springframework.boot:spring-boot-autoconfigure-processor'
  16. testImplementation 'org.springframework.boot:spring-boot-starter-test'
  17. }
  18. compileJava.dependsOn(processResources)