1
0
mirror of synced 2026-08-05 17:57:15 +00:00

SEC-2861: Add WebSocket Documentation & Sample

This commit is contained in:
Rob Winch
2015-01-27 11:46:24 -06:00
parent b9563f6102
commit 37740cd020
67 changed files with 25967 additions and 2 deletions
+3
View File
@@ -35,7 +35,10 @@ ext.slf4jVersion = '1.7.7'
ext.spockVersion = '0.7-groovy-2.0'
ext.springDataCommonsVersion = '1.9.1.RELEASE'
ext.springDataJpaVersion = '1.7.1.RELEASE'
ext.springDataRedisVersion = '1.4.1.RELEASE'
ext.springSessionVersion = '1.0.0.RELEASE'
ext.thymeleafVersion = '2.1.3.RELEASE'
ext.thymeleafVersion = '1.2.7.RELEASE'
ext.spockDependencies = [
dependencies.create("org.spockframework:spock-spring:$spockVersion") {
+3 -2
View File
@@ -10,9 +10,10 @@ buildscript {
apply plugin: 'tomcat'
dependencies {
def tomcatVersion = '7.0.57'
def tomcatVersion = '7.0.54'
tomcat "org.apache.tomcat.embed:tomcat-embed-core:${tomcatVersion}",
"org.apache.tomcat.embed:tomcat-embed-logging-juli:${tomcatVersion}"
"org.apache.tomcat.embed:tomcat-embed-logging-juli:${tomcatVersion}",
"org.apache.tomcat.embed:tomcat-embed-websocket:${tomcatVersion}"
tomcat("org.apache.tomcat.embed:tomcat-embed-jasper:${tomcatVersion}") {
exclude group: 'org.eclipse.jdt.core.compiler', module: 'ecj'
}