1234567891011121314151617 |
- group 'cn.tonyandmoney.tuon'
- version '1.1'
- sourceCompatibility = 1.8
- repositories {
- mavenCentral()
- }
- dependencies {
- testCompile group: 'junit', name: 'junit', version: '4.12'
- compile 'org.springframework.boot:spring-boot-starter-data-redis-reactive'
- compile('org.springframework.boot:spring-boot-starter-webflux')
- // compile 'org.springframework.boot:spring-boot-starter-data-mongodb-reactive'
- compile("com.baomidou:mybatis-plus-boot-starter:$mybatisPlusVersion")
- compile 'org.springframework.session:spring-session-data-redis'
- }
|