2022-05-03 09:52:44 -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>
|
2023-03-24 14:42:51 -04:00
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
|
|
|
<artifactId>jetty-websocket</artifactId>
|
2022-05-03 09:52:44 -04:00
|
|
|
<version>12.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2023-03-24 14:42:51 -04:00
|
|
|
<artifactId>jetty-websocket-jetty-client</artifactId>
|
|
|
|
<name>Core :: Websocket :: Jetty Client</name>
|
2022-05-03 09:52:44 -04:00
|
|
|
|
|
|
|
<properties>
|
2023-03-24 14:42:51 -04:00
|
|
|
<bundle-symbolic-name>${project.groupId}.client</bundle-symbolic-name>
|
2022-05-03 09:52:44 -04:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2023-03-24 14:42:51 -04:00
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
|
|
|
<artifactId>jetty-websocket-jetty-api</artifactId>
|
2022-05-03 09:52:44 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
2023-03-24 14:42:51 -04:00
|
|
|
<artifactId>jetty-websocket-jetty-common</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
|
|
|
<artifactId>jetty-websocket-core-client</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-client</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2022-05-03 09:52:44 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-slf4j-impl</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2023-03-24 14:42:51 -04:00
|
|
|
|
2022-05-03 09:52:44 -04:00
|
|
|
</project>
|