2019-06-24 11:42:39 -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/xsd/maven-4.0.0.xsd">
|
2018-09-24 05:24:49 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty.tests</groupId>
|
2019-02-12 05:23:56 -05:00
|
|
|
<artifactId>tests-parent</artifactId>
|
2019-07-11 16:54:21 -04:00
|
|
|
<version>10.0.0-SNAPSHOT</version>
|
2018-09-24 05:24:49 -04:00
|
|
|
</parent>
|
|
|
|
|
2019-02-12 05:23:56 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2018-09-24 05:24:49 -04:00
|
|
|
<artifactId>test-distribution</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<properties>
|
2019-02-11 13:37:49 -05:00
|
|
|
<bundle-symbolic-name>${project.groupId}.tests.distribution</bundle-symbolic-name>
|
2018-09-24 05:24:49 -04:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2019-02-11 13:37:49 -05:00
|
|
|
<artifactId>jetty-util</artifactId>
|
2018-09-24 05:24:49 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2020-03-19 18:46:41 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
2018-09-24 05:24:49 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
2019-02-11 13:37:49 -05:00
|
|
|
<artifactId>maven-artifact</artifactId>
|
2018-09-24 05:24:49 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
2019-02-11 13:37:49 -05:00
|
|
|
<artifactId>maven-resolver-provider</artifactId>
|
|
|
|
<version>${maven.version}</version>
|
2018-09-24 05:24:49 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.resolver</groupId>
|
|
|
|
<artifactId>maven-resolver-connector-basic</artifactId>
|
2019-02-12 03:04:45 -05:00
|
|
|
<version>${maven.resolver.version}</version>
|
2018-09-24 05:24:49 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.resolver</groupId>
|
|
|
|
<artifactId>maven-resolver-transport-file</artifactId>
|
2019-02-12 03:04:45 -05:00
|
|
|
<version>${maven.resolver.version}</version>
|
2018-09-24 05:24:49 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.resolver</groupId>
|
|
|
|
<artifactId>maven-resolver-transport-http</artifactId>
|
2019-02-12 03:04:45 -05:00
|
|
|
<version>${maven.resolver.version}</version>
|
2018-09-24 05:24:49 -04:00
|
|
|
</dependency>
|
2019-02-11 13:37:49 -05:00
|
|
|
|
2020-03-19 18:46:41 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-slf4j-impl</artifactId>
|
2020-03-20 12:12:08 -04:00
|
|
|
<scope>test</scope>
|
2020-03-19 18:46:41 -04:00
|
|
|
</dependency>
|
2019-02-12 03:22:39 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-distribution</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>zip</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-02-11 13:37:49 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-client</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-09-24 05:24:49 -04:00
|
|
|
<dependency>
|
2019-02-11 13:37:49 -05:00
|
|
|
<groupId>org.eclipse.jetty.http2</groupId>
|
|
|
|
<artifactId>http2-http-client-transport</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
2018-09-24 05:24:49 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.tests</groupId>
|
|
|
|
<artifactId>test-simple-webapp</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>war</type>
|
2019-02-11 13:37:49 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2019-06-05 09:07:32 -04:00
|
|
|
<groupId>org.eclipse.jetty.tests</groupId>
|
2019-08-07 22:04:07 -04:00
|
|
|
<artifactId>test-weld-cdi-webapp</artifactId>
|
2019-06-05 09:07:32 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>war</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-02-11 13:37:49 -05:00
|
|
|
<dependency>
|
2019-07-01 09:14:19 -04:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>test-jetty-webapp</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>war</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-02-11 13:37:49 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-helper</artifactId>
|
2018-09-24 05:24:49 -04:00
|
|
|
</dependency>
|
2019-08-01 03:46:06 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
|
|
|
</dependency>
|
2019-04-06 10:53:44 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-unixsocket-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-04-03 20:41:50 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2019-04-06 07:45:54 -04:00
|
|
|
<artifactId>jetty-unixsocket-client</artifactId>
|
2019-04-03 20:41:50 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-04-26 20:54:06 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
|
|
|
<artifactId>websocket-jetty-client</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-06-12 15:37:13 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.tests</groupId>
|
|
|
|
<artifactId>test-felix-webapp</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
<type>war</type>
|
|
|
|
</dependency>
|
2020-04-26 20:54:06 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.tests</groupId>
|
|
|
|
<artifactId>test-websocket-webapp</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
<type>war</type>
|
|
|
|
</dependency>
|
2020-02-08 20:59:57 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.tests</groupId>
|
|
|
|
<artifactId>test-bad-websocket-webapp</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
<type>war</type>
|
|
|
|
</dependency>
|
2018-09-24 05:24:49 -04:00
|
|
|
</dependencies>
|
2019-02-11 13:37:49 -05:00
|
|
|
|
2018-09-24 05:24:49 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<systemPropertyVariables>
|
|
|
|
<mavenRepoPath>${settings.localRepository}</mavenRepoPath>
|
2019-02-11 13:37:49 -05:00
|
|
|
<jettyVersion>${project.version}</jettyVersion>
|
2018-09-24 05:24:49 -04:00
|
|
|
</systemPropertyVariables>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2019-02-11 13:37:49 -05:00
|
|
|
|
2018-09-24 05:24:49 -04:00
|
|
|
</project>
|