build.gradle 594 B

1234567891011121314151617
  1. apply plugin: 'org.springframework.boot'
  2. dependencies {
  3. annotationProcessor "org.springframework.boot:spring-boot-configuration-processor"
  4. api 'org.springframework.cloud:spring-cloud-starter-gateway'
  5. api 'org.springframework.boot:spring-boot-starter-webflux'
  6. // api 'org.springframework.boot:spring-boot-starter-actuator'
  7. // api 'org.springframework.boot:spring-boot-starter-data-redis'
  8. // api 'com.zaxxer:HikariCP'
  9. api 'org.apache.commons:commons-lang3'
  10. api 'org.apache.commons:commons-pool2'
  11. api 'com.google.guava:guava'
  12. }
  13. bootJar {
  14. enabled = true
  15. }