Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Wilkins2009-03-29 02:15:22 +0000
committerGreg Wilkins2009-03-29 02:15:22 +0000
commit0f510e6753a0b90f6b1279397976dfb279548fa0 (patch)
tree4f98e5610c79272e71ae195ff6a0142da0b24f93 /jetty-servlets/pom.xml
parentff76d89682fdbd4478bd23243e1bd7c7d9092487 (diff)
downloadorg.eclipse.jetty.project-0f510e6753a0b90f6b1279397976dfb279548fa0.tar.gz
org.eclipse.jetty.project-0f510e6753a0b90f6b1279397976dfb279548fa0.tar.xz
org.eclipse.jetty.project-0f510e6753a0b90f6b1279397976dfb279548fa0.zip
This commit takes jetty-7 back to the 2.5 servlet API, but leaves much of the
3.0 asynchronous machinery available. Introduces a new improved Continuation API that is an evolution of the original Continuation API, while taking some good ideas from the 3.0 spec. The intention is that this API will simplify the use of the 3.0 API, while making it available in jetty-7 (scalably) and in all other 2.5 containers with the ContinuationFilter. git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@27 7e9141cc-0065-0410-87d8-b60c137991c4
Diffstat (limited to 'jetty-servlets/pom.xml')
-rw-r--r--jetty-servlets/pom.xml5
1 files changed, 5 insertions, 0 deletions
diff --git a/jetty-servlets/pom.xml b/jetty-servlets/pom.xml
index 747c0aec0d..6838444de9 100644
--- a/jetty-servlets/pom.xml
+++ b/jetty-servlets/pom.xml
@@ -54,6 +54,11 @@
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
+ <artifactId>jetty-continuation</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-webapp</artifactId>
<version>${project.version}</version>
<scope>provided</scope>

Back to the top