apply plugin: 'io.spring.convention.spring-sample-boot' ext['spring-security.version'] = '6.3.0-SNAPSHOT' dependencies { management platform(project(":spring-session-dependencies")) implementation project(':spring-session-data-redis') implementation 'org.springframework.boot:spring-boot-starter-data-redis-reactive' implementation 'org.springframework.boot:spring-boot-starter-security' implementation 'org.springframework.boot:spring-boot-starter-webflux' implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' testImplementation 'org.springframework.boot:spring-boot-starter-test' testImplementation 'io.projectreactor:reactor-test' testImplementation 'org.springframework.security:spring-security-test' testImplementation 'org.springframework.boot:spring-boot-testcontainers' testImplementation 'com.redis:testcontainers-redis' testImplementation "org.htmlunit:htmlunit" testImplementation "org.seleniumhq.selenium:htmlunit3-driver" testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine" testRuntimeOnly "org.junit.platform:junit-platform-launcher" } tasks.named('test') { useJUnitPlatform() }