You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.2 KiB
29 lines
1.2 KiB
description = "Spring WebSocket" |
|
|
|
dependencies { |
|
compile(project(":spring-context")) |
|
compile(project(":spring-core")) |
|
compile(project(":spring-web")) |
|
optional(project(":spring-messaging")) |
|
optional(project(":spring-webmvc")) |
|
optional("javax.servlet:javax.servlet-api") |
|
optional("javax.websocket:javax.websocket-api") |
|
optional("org.apache.tomcat:tomcat-websocket") |
|
optional("org.glassfish.tyrus:tyrus-container-servlet") |
|
optional("org.eclipse.jetty:jetty-webapp") { |
|
exclude group: "javax.servlet", module: "javax.servlet" |
|
} |
|
optional("org.eclipse.jetty.websocket:websocket-server") { |
|
exclude group: "javax.servlet", module: "javax.servlet" |
|
} |
|
optional("org.eclipse.jetty.websocket:websocket-client") |
|
optional("org.eclipse.jetty:jetty-client") |
|
optional("io.undertow:undertow-servlet") |
|
optional("io.undertow:undertow-websockets-jsr") |
|
optional("com.fasterxml.jackson.core:jackson-databind") |
|
testCompile(testFixtures(project(":spring-core"))) |
|
testCompile(testFixtures(project(":spring-web"))) |
|
testCompile("org.apache.tomcat.embed:tomcat-embed-core") |
|
testCompile("org.apache.tomcat.embed:tomcat-embed-websocket") |
|
testCompile("io.projectreactor.netty:reactor-netty") |
|
}
|
|
|