build.gradle 783 B

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