build.gradle 632 B

123456789101112131415161718
  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 'commons-io:commons-io'
  11. // api 'org.apache.commons:commons-pool2'
  12. // api 'com.google.guava:guava'
  13. }
  14. bootJar {
  15. enabled = true
  16. }