2009-03-30 00:47:19 +00: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 15:20:57 +10:00
|
|
|
<version>9.0.0-SNAPSHOT</version>
|
2009-03-30 00:47:19 +00:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2009-05-26 01:16:27 +00:00
|
|
|
<artifactId>example-jetty-embedded</artifactId>
|
|
|
|
<name>Example :: Jetty Embedded</name>
|
2009-03-30 00:47:19 +00:00
|
|
|
<description>Jetty Embedded Examples</description>
|
|
|
|
<dependencies>
|
2012-07-23 15:38:27 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-util-ajax</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2009-03-30 00:47:19 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-webapp</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2009-09-28 15:36:04 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-security</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2009-07-10 08:20:24 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-servlets</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2009-03-30 00:47:19 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-deploy</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2009-08-03 02:39:33 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-jmx</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2011-10-12 21:00:42 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-helper</artifactId>
|
|
|
|
<scope>test</scope>
|
2010-12-05 15:19:06 +00:00
|
|
|
</dependency>
|
2011-06-21 02:26:18 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2009-03-30 00:47:19 +00:00
|
|
|
</dependencies>
|
|
|
|
</project>
|