Skip to content

Instantly share code, notes, and snippets.

@KalpaD
Created February 6, 2021 03:58
Show Gist options
  • Select an option

  • Save KalpaD/487e13fd8f7512392effbeb62495b634 to your computer and use it in GitHub Desktop.

Select an option

Save KalpaD/487e13fd8f7512392effbeb62495b634 to your computer and use it in GitHub Desktop.
plugins {
id 'org.springframework.boot' version '2.3.0.RELEASE'
id 'java'
id 'idea'
}
apply plugin: 'io.spring.dependency-management'
group = 'org.kds.reactive'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-mongodb-reactive'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'org.springframework.boot:spring-boot-starter-validation'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'de.flapdoodle.embed:de.flapdoodle.embed.mongo'
testImplementation 'io.projectreactor:reactor-test'
testImplementation 'org.mock-server:mockserver-netty:5.5.4'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment