Files
spring-session/spring-session-samples/spring-session-sample-boot-mongodb-reactive/spring-session-sample-boot-mongodb-reactive.gradle
Eleftheria Stein 5fdbfce4c2 Update Gradle to 7.2
Closes gh-1944
2021-11-02 14:28:31 +01:00

14 lines
626 B
Groovy

apply plugin: 'io.spring.convention.spring-sample-boot'
dependencies {
implementation project(':spring-session-data-mongodb')
implementation "org.springframework.boot:spring-boot-starter-webflux"
implementation "org.springframework.boot:spring-boot-starter-thymeleaf"
implementation "org.springframework.boot:spring-boot-starter-data-mongodb-reactive"
implementation "de.flapdoodle.embed:de.flapdoodle.embed.mongo"
testImplementation "org.springframework.boot:spring-boot-starter-test"
testImplementation "org.seleniumhq.selenium:htmlunit-driver"
testImplementation "org.seleniumhq.selenium:selenium-support"
}