build.gradle 418 B

123456789101112131415
  1. group 'cn.tonyandmoney.tuon'
  2. version '1.1'
  3. sourceCompatibility = 1.8
  4. repositories {
  5. mavenCentral()
  6. }
  7. dependencies {
  8. testCompile group: 'junit', name: 'junit', version: '4.12'
  9. compile 'org.springframework.boot:spring-boot-starter-data-redis-reactive'
  10. compile('org.springframework.boot:spring-boot-starter-webflux')
  11. // compile 'org.springframework.boot:spring-boot-starter-data-mongodb-reactive'
  12. }