From 043aafed867068b307cfce401f6296444ff21958 Mon Sep 17 00:00:00 2001 From: Rossen Stoyanchev Date: Tue, 7 May 2013 08:18:27 -0400 Subject: [PATCH] Fix build version --- README-WEBSOCKET.md | 88 --------------------------------------------- gradle.properties | 2 +- 2 files changed, 1 insertion(+), 89 deletions(-) delete mode 100644 README-WEBSOCKET.md diff --git a/README-WEBSOCKET.md b/README-WEBSOCKET.md deleted file mode 100644 index 27c1e641b6a..00000000000 --- a/README-WEBSOCKET.md +++ /dev/null @@ -1,88 +0,0 @@ - -## Maven Snapshots - -Maven snapshots of this branch are available through the Spring snapshot repository: - - - spring-snapshots - http://repo.springsource.org/snapshot - true - false - - -Use version `4.0.0.WEBSOCKET-SNAPSHOT`, for example: - - - org.springframework - spring-context - 4.0.0.WEBSOCKET-SNAPSHOT - - - org.springframework - spring-web - 4.0.0.WEBSOCKET-SNAPSHOT - - - org.springframework - spring-websocket - 4.0.0.WEBSOCKET-SNAPSHOT - - - - -### Tomcat - -Tomcat provides early JSR-356 support. You'll need to build the latest source, which is relatively easy to do. - -Check out Tomcat trunk: - - mkdir tomcat - cd tomcat - svn co http://svn.apache.org/repos/asf/tomcat/trunk/ - cd trunk - -Create `build.properties` in the trunk directory with similar content: - - # ----- Default Base Path for Dependent Packages ----- - # Replace this path with the path where dependencies binaries should be downloaded - base.path=~/dev/sources/apache/tomcat/download - -Run the ant build: - - ant clean - ant - -A usable Tomcat installation can be found in `output/build` - -### Jetty 9 - -Download and use the latest Jetty (currently 9.0.2.v20130417). It does not support JSR-356 yet but that's not an issue, since we're using the Jetty 9 native WebSocket API. - -If using Java-based Servlet configuration instead of web.xml, add the following options to Jetty's start.ini: - - OPTIONS=plus - etc/jetty-plus.xml - OPTIONS=annotations - etc/jetty-annotations.xml - -### Glassfish - -Glassfish also provides JSR-356 support based on Tyrus (the reference implementation). - -Download a [Glassfish 4 build](http://dlc.sun.com.edgesuite.net/glassfish/4.0/) (e.g. glassfish-4.0-b84.zip from the promoted builds) - -Unzip the downloaded file. - -Start the server: - - cd /glassfish4 - bin/asadmin start-domain - -Deploy a WAR file. Here is [a sample script](https://github.com/rstoyanchev/spring-websocket-test/blob/master/redeploy-glassfish.sh). - -Watch the logs: - - cd /glassfish4 - less `glassfish/domains/domain1/logs/server.log` - - diff --git a/gradle.properties b/gradle.properties index 712344802e2..2db7ae75f27 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1 @@ -version=4.0.0.WEBSOCKET-SNAPSHOT +version=4.0.0.BUILD-SNAPSHOT