2019-01-18 16:39:26 +11:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2019-06-24 17:42:39 +02: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">
|
2019-01-18 16:39:26 +11:00
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
|
|
|
<artifactId>websocket-parent</artifactId>
|
2020-07-10 17:38:29 +10:00
|
|
|
<version>10.0.0-SNAPSHOT</version>
|
2019-01-18 16:39:26 +11:00
|
|
|
</parent>
|
|
|
|
|
2019-02-21 10:56:45 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2019-12-23 13:32:21 +11:00
|
|
|
<artifactId>websocket-jetty-tests</artifactId>
|
2019-01-29 10:29:38 +11:00
|
|
|
<name>Jetty :: Websocket :: org.eclipse.jetty.websocket :: Tests</name>
|
2019-01-18 16:39:26 +11:00
|
|
|
|
2019-02-21 10:56:45 -05:00
|
|
|
<properties>
|
2019-12-20 16:21:34 +11:00
|
|
|
<bundle-symbolic-name>${project.groupId}.tests</bundle-symbolic-name>
|
2019-01-18 16:39:26 +11:00
|
|
|
</properties>
|
|
|
|
|
2019-02-21 10:56:45 -05:00
|
|
|
<dependencies>
|
2020-03-19 17:46:41 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-01-18 16:39:26 +11:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
2019-12-23 13:32:21 +11:00
|
|
|
<artifactId>websocket-jetty-api</artifactId>
|
2019-01-18 16:39:26 +11:00
|
|
|
<version>${project.version}</version>
|
2019-08-14 14:57:21 +02:00
|
|
|
<scope>test</scope>
|
2019-01-18 16:39:26 +11:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
2019-12-23 13:32:21 +11:00
|
|
|
<artifactId>websocket-jetty-client</artifactId>
|
2019-01-18 16:39:26 +11:00
|
|
|
<version>${project.version}</version>
|
2019-08-14 14:57:21 +02:00
|
|
|
<scope>test</scope>
|
2019-01-18 16:39:26 +11:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
2019-12-23 13:32:21 +11:00
|
|
|
<artifactId>websocket-jetty-server</artifactId>
|
2019-01-18 16:39:26 +11:00
|
|
|
<version>${project.version}</version>
|
2019-08-14 14:57:21 +02:00
|
|
|
<scope>test</scope>
|
2019-01-18 16:39:26 +11:00
|
|
|
</dependency>
|
2019-02-04 14:54:27 +11:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.tests</groupId>
|
|
|
|
<artifactId>jetty-http-tools</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2019-08-14 14:57:21 +02:00
|
|
|
<scope>test</scope>
|
2019-02-04 14:54:27 +11:00
|
|
|
</dependency>
|
2019-01-18 16:39:26 +11:00
|
|
|
<dependency>
|
2019-08-14 14:57:21 +02:00
|
|
|
<groupId>org.eclipse.jetty.http2</groupId>
|
|
|
|
<artifactId>http2-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-11-14 23:48:34 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-alpn-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-alpn-java-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-08-14 14:57:21 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.http2</groupId>
|
|
|
|
<artifactId>http2-http-client-transport</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
2019-01-29 10:29:38 +11:00
|
|
|
</dependency>
|
2020-02-18 10:40:20 -06:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-slf4j-impl</artifactId>
|
2020-03-20 11:12:08 -05:00
|
|
|
<scope>test</scope>
|
2020-02-18 10:40:20 -06:00
|
|
|
</dependency>
|
2019-06-24 17:40:30 +02:00
|
|
|
<dependency>
|
2020-08-19 08:33:48 +10:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-jmx</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2019-06-24 17:40:30 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-01-18 16:39:26 +11:00
|
|
|
</dependencies>
|
|
|
|
|
2019-02-21 10:56:45 -05:00
|
|
|
<build>
|
2020-03-19 07:06:13 +10:00
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
2020-03-20 14:04:04 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<!-- No point deploying testing projects -->
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2020-03-19 07:06:13 +10:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<!-- No point building javadoc on testing projects -->
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
2019-01-18 16:39:26 +11:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2019-02-04 14:54:27 +11:00
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
<extensions>true</extensions>
|
2019-01-18 16:39:26 +11:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
2019-02-04 14:54:27 +11:00
|
|
|
<goal>manifest</goal>
|
2019-01-18 16:39:26 +11:00
|
|
|
</goals>
|
|
|
|
<configuration>
|
2019-02-04 14:54:27 +11:00
|
|
|
<instructions>
|
|
|
|
<Bundle-Description>jetty.websocket Integration Tests</Bundle-Description>
|
|
|
|
<Export-Package>
|
|
|
|
org.eclipse.jetty.websocket.jetty.tests.*;version="${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}"
|
|
|
|
</Export-Package>
|
|
|
|
</instructions>
|
2019-01-18 16:39:26 +11:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2019-01-29 10:29:38 +11:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
2019-01-18 16:39:26 +11:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|
2019-01-29 10:29:38 +11:00
|
|
|
|