spring-boot/spring-boot-project/spring-boot-starters/spring-boot-starter-websocket/build.gradle
Moritz Halbritter 81a57944b1 Include 'MVC' in starter-websocket description
Closes gh-32493
2023-01-16 12:02:27 +01:00

12 lines
350 B
Groovy

plugins {
id "org.springframework.boot.starter"
}
description = "Starter for building WebSocket applications using Spring Framework's MVC WebSocket support"
dependencies {
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web"))
api("org.springframework:spring-messaging")
api("org.springframework:spring-websocket")
}