build.gradle 710 B

12345678910111213141516171819
  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. compile("com.baomidou:mybatis-plus-boot-starter:$mybatisPlusVersion")
  13. compile 'org.springframework.session:spring-session-data-redis'
  14. compile ("com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.9.9")
  15. compile('com.fasterxml.jackson.module:jackson-module-kotlin:2.9.9')
  16. }