2009-05-23 07:33:40 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-project</artifactId>
|
2012-07-20 01:20:57 -04:00
|
|
|
<version>9.0.0-SNAPSHOT</version>
|
2009-05-23 07:33:40 -04:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>test-continuation</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>Test :: Continuation</name>
|
|
|
|
<description>Asynchronous API</description>
|
|
|
|
<build>
|
2010-04-27 11:34:15 -04:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<!-- DO NOT DEPLOY (or Release) -->
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2009-05-23 07:33:40 -04:00
|
|
|
</build>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2009-05-23 10:26:37 -04:00
|
|
|
<artifactId>jetty-servlet</artifactId>
|
2009-05-23 07:33:40 -04:00
|
|
|
<version>${project.version}</version>
|
2009-06-07 21:09:17 -04:00
|
|
|
<scope>provided</scope>
|
2009-05-23 07:33:40 -04:00
|
|
|
</dependency>
|
2012-10-21 01:19:40 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-continuation</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2012-06-06 10:40:19 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-helper</artifactId>
|
2012-08-09 14:04:50 -04:00
|
|
|
<scope>compile</scope>
|
2012-06-06 10:40:19 -04:00
|
|
|
</dependency>
|
|
|
|
|
2009-05-23 07:33:40 -04:00
|
|
|
</dependencies>
|
|
|
|
</project>
|