Files
spring-session/spring-session-samples/spring-session-sample-boot-websocket/spring-session-sample-boot-websocket.gradle
Yanming Zhou a965117ab4 Polish usage of spring-boot-testcontainers
Signed-off-by: Yanming Zhou <zhouyanming@gmail.com>
2025-04-22 15:05:42 -05:00

36 lines
1.8 KiB
Groovy

apply plugin: 'io.spring.convention.spring-sample-boot'
dependencies {
management platform(project(":spring-session-dependencies"))
implementation project(':spring-session-data-redis')
implementation "org.springframework.boot:spring-boot-starter-web"
implementation "org.springframework.boot:spring-boot-starter-thymeleaf"
implementation "org.springframework.boot:spring-boot-starter-security"
implementation "org.springframework.boot:spring-boot-starter-data-jpa"
implementation "org.springframework.boot:spring-boot-starter-data-redis"
implementation "org.springframework.boot:spring-boot-starter-websocket"
implementation "org.springframework.boot:spring-boot-starter-validation"
implementation "org.springframework.boot:spring-boot-devtools"
implementation "org.springframework:spring-websocket"
implementation "org.springframework.security:spring-security-messaging"
implementation "org.springframework.security:spring-security-data"
implementation "nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect"
implementation "org.webjars:bootstrap"
implementation "org.webjars:html5shiv"
implementation "org.webjars:knockout"
implementation "org.webjars:sockjs-client"
implementation "org.webjars:stomp-websocket"
implementation "org.webjars:webjars-locator-core"
implementation "com.h2database:h2"
testImplementation "org.springframework.boot:spring-boot-starter-test"
testImplementation "org.springframework.security:spring-security-test"
testImplementation "org.junit.jupiter:junit-jupiter-api"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine"
testRuntimeOnly "org.junit.platform:junit-platform-launcher"
integrationTestCompile "org.springframework.boot:spring-boot-testcontainers"
integrationTestCompile "com.redis:testcontainers-redis"
}