-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathspring-session-sample-boot-reactive-max-sessions.gradle
More file actions
27 lines (24 loc) · 1.28 KB
/
spring-session-sample-boot-reactive-max-sessions.gradle
File metadata and controls
27 lines (24 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
apply plugin: 'io.spring.convention.spring-sample-boot'
dependencies {
management platform(project(":spring-session-dependencies"))
implementation 'org.springframework.boot:spring-boot-starter-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-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation project(':spring-session-data-redis')
testImplementation 'com.redis:testcontainers-redis'
testImplementation 'io.projectreactor:reactor-test'
testImplementation 'org.htmlunit:htmlunit'
testImplementation 'org.seleniumhq.selenium:htmlunit3-driver'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.boot:spring-boot-testcontainers'
testImplementation 'org.springframework.security:spring-security-test'
testImplementation "org.springframework.boot:spring-boot-webflux-test"
testImplementation "org.springframework.boot:spring-boot-webtestclient"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine"
testRuntimeOnly "org.junit.platform:junit-platform-launcher"
}
tasks.named('test') {
useJUnitPlatform()
}