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' compileOnly('org.springframework.boot:spring-boot-starter-webflux') compileOnly('org.springframework.boot:spring-boot-starter-web') compileOnly 'org.springframework.boot:spring-boot-starter-data-mongodb-reactive' compile 'org.springframework.session:spring-session-data-redis' compile("com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.9.9") compile('com.fasterxml.jackson.module:jackson-module-kotlin:2.9.9') compile('org.springframework.boot:spring-boot-starter-actuator') compile("de.codecentric:spring-boot-admin-starter-client:${springBootAdminVersion}") compile('org.springframework.boot:spring-boot-starter-undertow') compile('org.springframework.cloud:spring-cloud-starter-netflix-eureka-client') compile('org.springframework.cloud:spring-cloud-starter-openfeign') //cache compile('org.springframework.boot:spring-boot-starter-cache') compile("com.github.ben-manes.caffeine:caffeine:$caffeine_version") // db compile("mysql:mysql-connector-java:$mysql_connector_version") compile("com.baomidou:mybatis-plus-boot-starter:$mybatisPlusVersion") compile('org.springframework.boot:spring-boot-starter-jdbc') }