40 lines
1.7 KiB
Groovy
40 lines
1.7 KiB
Groovy
plugins {
|
|
id "java-library"
|
|
id "org.springframework.boot.auto-configuration"
|
|
id "org.springframework.boot.configuration-properties"
|
|
id "org.springframework.boot.deployed"
|
|
id "org.springframework.boot.docker-test"
|
|
id "org.springframework.boot.optional-dependencies"
|
|
}
|
|
|
|
description = "Spring Boot Session Data Redis"
|
|
|
|
dependencies {
|
|
api(project(":spring-boot-project:spring-boot"))
|
|
api(project(":spring-boot-project:spring-boot-session"))
|
|
api("org.springframework.session:spring-session-data-redis")
|
|
|
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-test"))
|
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support-docker"))
|
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-webflux"))
|
|
dockerTestImplementation(testFixtures(project(":spring-boot-project:spring-boot-web-server")))
|
|
dockerTestImplementation(testFixtures(project(":spring-boot-project:spring-boot-session")))
|
|
dockerTestImplementation("com.redis:testcontainers-redis")
|
|
dockerTestImplementation("org.assertj:assertj-core")
|
|
dockerTestImplementation("org.junit.jupiter:junit-jupiter")
|
|
dockerTestImplementation("org.testcontainers:junit-jupiter")
|
|
|
|
dockerTestRuntimeOnly("jakarta.servlet:jakarta.servlet-api")
|
|
|
|
implementation(project(":spring-boot-project:spring-boot-data-redis"))
|
|
|
|
optional(project(":spring-boot-project:spring-boot-autoconfigure"))
|
|
|
|
testImplementation(project(":spring-boot-project:spring-boot-test"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
|
|
testImplementation("jakarta.servlet:jakarta.servlet-api")
|
|
testImplementation("org.springframework:spring-web")
|
|
|
|
testRuntimeOnly("ch.qos.logback:logback-classic")
|
|
}
|