Created
February 6, 2021 03:58
-
-
Save KalpaD/487e13fd8f7512392effbeb62495b634 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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