11 lines
320 B
Groovy
11 lines
320 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(project(":spring-boot-project:spring-boot-websocket"))
|
|
}
|