build.gradle 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  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 '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. compile('org.springframework.boot:spring-boot-starter-actuator')
  17. compile("de.codecentric:spring-boot-admin-starter-client:${springBootAdminVersion}")
  18. compile('org.springframework.boot:spring-boot-starter-undertow')
  19. compile('org.springframework.cloud:spring-cloud-starter-netflix-eureka-client')
  20. compile('org.springframework.cloud:spring-cloud-starter-openfeign')
  21. //cache
  22. compile('org.springframework.boot:spring-boot-starter-cache')
  23. compile("com.github.ben-manes.caffeine:caffeine:$caffeine_version")
  24. // db
  25. compile("mysql:mysql-connector-java:$mysql_connector_version")
  26. compile("com.baomidou:mybatis-plus-boot-starter:$mybatisPlusVersion")
  27. compile('org.springframework.boot:spring-boot-starter-jdbc')
  28. }