Skip to content

Instantly share code, notes, and snippets.

@warpgate3
Created September 9, 2019 06:37
Show Gist options
  • Save warpgate3/c05a59d259d03e945592af541c06ca63 to your computer and use it in GitHub Desktop.
Save warpgate3/c05a59d259d03e945592af541c06ca63 to your computer and use it in GitHub Desktop.
plugins {
id 'org.springframework.boot' version '2.1.7.RELEASE'
id 'io.spring.dependency-management' version '1.0.8.RELEASE'
id 'java'
}
group = 'info.m2sj'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-redis-reactive'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
compile group: 'it.ozimov', name: 'embedded-redis', version: '0.7.2'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'io.projectreactor:reactor-test'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment