plugins { id "java-library" id "org.springframework.boot.auto-configuration" id "org.springframework.boot.deployed" id "org.springframework.boot.optional-dependencies" } description = "Spring Boot WebSocket" dependencies { api(project(":spring-boot-project:spring-boot")) api("org.springframework:spring-messaging") api("org.springframework:spring-websocket") optional(project(":spring-boot-project:spring-boot-autoconfigure")) optional(project(":spring-boot-project:spring-boot-jackson")) testImplementation(project(":spring-boot-project:spring-boot-test")) testImplementation(project(":spring-boot-project:spring-boot-tomcat")) testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support")) testImplementation(project(":spring-boot-project:spring-boot-webmvc")) testImplementation("org.apache.tomcat.embed:tomcat-embed-websocket") testRuntimeOnly("ch.qos.logback:logback-classic") }