2021-10-14 12:58:52 +08:00
|
|
|
plugins {
|
2023-04-11 12:14:00 +08:00
|
|
|
id "java"
|
|
|
|
id "org.springframework.boot.conventions"
|
2021-10-14 12:58:52 +08:00
|
|
|
}
|
|
|
|
|
2021-10-20 06:53:22 +08:00
|
|
|
description = "Spring Boot Session Mongodb smoke test"
|
2021-10-14 12:58:52 +08:00
|
|
|
|
|
|
|
dependencies {
|
2023-04-11 12:14:00 +08:00
|
|
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-actuator"))
|
|
|
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-security"))
|
|
|
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-redis"))
|
|
|
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web"))
|
|
|
|
implementation("org.springframework.session:spring-session-data-redis")
|
|
|
|
|
|
|
|
testImplementation("org.testcontainers:junit-jupiter")
|
2023-04-11 11:15:39 +08:00
|
|
|
testImplementation(project(":spring-boot-project:spring-boot-testcontainers"))
|
2023-04-11 12:14:00 +08:00
|
|
|
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
|
|
|
|
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
|
2021-10-14 12:58:52 +08:00
|
|
|
}
|