123456789101112131415161718 |
- apply plugin: 'org.springframework.boot'
- dependencies {
- annotationProcessor "org.springframework.boot:spring-boot-configuration-processor"
- api 'org.springframework.cloud:spring-cloud-starter-gateway'
- api 'org.springframework.boot:spring-boot-starter-webflux'
- // api 'org.springframework.boot:spring-boot-starter-actuator'
- // api 'org.springframework.boot:spring-boot-starter-data-redis'
- // api 'com.zaxxer:HikariCP'
- api 'org.apache.commons:commons-lang3'
- api 'commons-io:commons-io'
- // api 'org.apache.commons:commons-pool2'
- // api 'com.google.guava:guava'
- }
- bootJar {
- enabled = true
- }
|