build.gradle 294 B

1234567891011121314151617
  1. plugins {
  2. id 'java'
  3. }
  4. group 'cn.gygxzc.cloud.tina'
  5. version '1.0'
  6. sourceCompatibility = 1.8
  7. repositories {
  8. mavenCentral()
  9. }
  10. dependencies {
  11. testCompile group: 'junit', name: 'junit', version: '4.12'
  12. compile 'org.springframework.boot:spring-boot-starter-data-redis-reactive'
  13. }