2009-07-08 15:28:16 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
// ========================================================================
|
|
|
|
// Copyright (c) Webtide LLC
|
|
|
|
//
|
|
|
|
// All rights reserved. This program and the accompanying materials
|
|
|
|
// are made available under the terms of the Eclipse Public License v1.0
|
|
|
|
// and Apache License v2.0 which accompanies this distribution.
|
|
|
|
//
|
|
|
|
// The Eclipse Public License is available at
|
|
|
|
// http://www.eclipse.org/legal/epl-v10.html
|
|
|
|
//
|
|
|
|
// The Apache License v2.0 is available at
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0.txt
|
|
|
|
//
|
|
|
|
// You may elect to redistribute this code under either of these licenses.
|
|
|
|
// ========================================================================
|
|
|
|
-->
|
|
|
|
<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.tests</groupId>
|
|
|
|
<artifactId>tests-parent</artifactId>
|
2011-02-03 06:46:23 -05:00
|
|
|
<version>7.3.1-SNAPSHOT</version>
|
2009-07-08 15:28:16 -04:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>test-integration</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>Jetty Tests :: Integrations</name>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>copy-wars-for-testing</id>
|
|
|
|
<phase>process-test-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<includeScope>test</includeScope>
|
|
|
|
<includeTypes>war</includeTypes>
|
|
|
|
<overwriteSnapshots>true</overwriteSnapshots>
|
|
|
|
<overwriteReleases>true</overwriteReleases>
|
|
|
|
<stripVersion>true</stripVersion>
|
|
|
|
<outputDirectory>${project.build.directory}/webapps</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-webapp</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-deploy</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-rewrite</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2010-03-15 16:19:03 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-client</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2011-01-28 13:58:47 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-helper</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2009-07-08 15:28:16 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.tests</groupId>
|
|
|
|
<artifactId>test-webapp-rfc2616</artifactId>
|
2009-07-08 19:13:31 -04:00
|
|
|
<version>${project.version}</version>
|
2009-07-08 15:28:16 -04:00
|
|
|
<type>war</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|