2009-07-08 15:28:16 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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>
|
2018-09-04 18:23:31 -04:00
|
|
|
<version>9.3.26-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>
|
2013-05-21 14:10:07 -04:00
|
|
|
<url>http://www.eclipse.org/jetty</url>
|
2011-08-29 18:42:17 -04:00
|
|
|
<properties>
|
|
|
|
<test-wars-dir>${project.build.directory}/test-wars</test-wars-dir>
|
|
|
|
<test-libs-dir>${project.build.directory}/test-libs</test-libs-dir>
|
|
|
|
<test-dist-dir>${project.build.directory}/test-dist</test-dist-dir>
|
2014-08-15 05:35:49 -04:00
|
|
|
<bundle-symbolic-name>${project.groupId}.integrations</bundle-symbolic-name>
|
|
|
|
|
2011-08-29 18:42:17 -04:00
|
|
|
</properties>
|
2009-07-08 15:28:16 -04:00
|
|
|
<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>
|
2011-02-15 09:35:16 -05:00
|
|
|
<includeGroupId>org.eclipse.jetty.tests</includeGroupId>
|
2009-07-08 15:28:16 -04:00
|
|
|
<includeScope>test</includeScope>
|
|
|
|
<includeTypes>war</includeTypes>
|
|
|
|
<overwriteSnapshots>true</overwriteSnapshots>
|
|
|
|
<overwriteReleases>true</overwriteReleases>
|
|
|
|
<stripVersion>true</stripVersion>
|
|
|
|
<outputDirectory>${project.build.directory}/webapps</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2011-08-29 18:42:17 -04:00
|
|
|
<execution>
|
|
|
|
<id>unpack-jetty-distro</id>
|
|
|
|
<phase>process-test-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>unpack</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactItems>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-distribution</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>zip</type>
|
|
|
|
<overWrite>true</overWrite>
|
|
|
|
</artifactItem>
|
|
|
|
</artifactItems>
|
|
|
|
<outputAbsoluteArtifactFilename>true</outputAbsoluteArtifactFilename>
|
|
|
|
<outputDirectory>${test-dist-dir}</outputDirectory>
|
|
|
|
<overWriteSnapshots>true</overWriteSnapshots>
|
|
|
|
<overWriteIfNewer>true</overWriteIfNewer>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2012-12-27 15:53:38 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<forkMode>always</forkMode>
|
2013-01-06 20:34:57 -05:00
|
|
|
<useSystemClassLoader>true</useSystemClassLoader>
|
|
|
|
<useManifestOnlyJar>false</useManifestOnlyJar>
|
2012-12-27 15:53:38 -05:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2009-07-08 15:28:16 -04:00
|
|
|
</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>
|
2014-01-08 17:47:01 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-distribution</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
</dependency>
|
2014-10-29 12:50:32 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-http</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<classifier>tests</classifier>
|
|
|
|
<scope>test</scope>
|
|
|
|
</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>
|
2012-12-27 15:53:38 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2015-02-18 03:24:29 -05:00
|
|
|
<artifactId>apache-jsp</artifactId>
|
2012-12-27 15:53:38 -05:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2009-07-08 15:28:16 -04:00
|
|
|
<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>
|
2015-02-25 02:23:54 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.alpn</groupId>
|
|
|
|
<artifactId>alpn-api</artifactId>
|
|
|
|
<version>${alpn.api.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-alpn-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2009-07-08 15:28:16 -04:00
|
|
|
</dependencies>
|
|
|
|
</project>
|