2020-09-29 04:47:34 -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/xsd/maven-4.0.0.xsd">
|
2024-01-03 04:12:56 -05:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2020-09-29 04:47:34 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty.tests</groupId>
|
|
|
|
<artifactId>test-webapps-parent</artifactId>
|
2024-05-13 22:45:50 -04:00
|
|
|
<version>10.0.22-SNAPSHOT</version>
|
2020-09-29 04:47:34 -04:00
|
|
|
</parent>
|
|
|
|
<artifactId>test-websocket-client-webapp</artifactId>
|
|
|
|
<packaging>war</packaging>
|
|
|
|
|
|
|
|
<name>Test :: Jetty Websocket Simple Webapp with WebSocketClient</name>
|
|
|
|
|
|
|
|
<dependencies>
|
2024-01-03 04:12:56 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
|
|
|
<artifactId>websocket-jetty-client</artifactId>
|
|
|
|
</dependency>
|
2020-11-03 01:17:27 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
2023-06-05 07:37:05 -04:00
|
|
|
<artifactId>slf4j-simple</artifactId>
|
2020-11-03 01:17:27 -05:00
|
|
|
</dependency>
|
2020-09-29 04:47:34 -04:00
|
|
|
<dependency>
|
2020-11-02 09:17:31 -05:00
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
2024-01-03 04:12:56 -05:00
|
|
|
<artifactId>jetty-javax-websocket-api</artifactId>
|
2020-09-29 04:47:34 -04:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-11-02 09:17:31 -05:00
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
2024-01-03 04:12:56 -05:00
|
|
|
<artifactId>jetty-servlet-api</artifactId>
|
2020-09-29 04:47:34 -04:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|