<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">
  <modelVersion>4.0.0</modelVersion>

  <parent>
    <groupId>io.github.dengchen2020</groupId>
    <artifactId>dc-spring-boot-starter-parent</artifactId>
    <version>0.4.1</version>
  </parent>

  <artifactId>dc-spring-boot-starter-websocket</artifactId>
  <packaging>jar</packaging>

  <name>${project.artifactId}</name>
  <url>https://github.com/xiaochenxt/dengchen2020</url>
  <description>websocket，服务端支持跨节点消息发送</description>

  <developers>
    <developer>
      <id>dc2024</id>
      <name>小郴</name>
      <email>876975281@qq.com</email>
    </developer>
  </developers>

  <scm>
    <url>https://github.com/xiaochenxt/dengchen2020</url>
    <connection>https://github.com/xiaochenxt/dengchen2020.git</connection>
    <developerConnection>https://github.com/xiaochenxt/dengchen2020.git</developerConnection>
  </scm>

  <dependencies>
    <dependency>
      <groupId>io.github.dengchen2020</groupId>
      <artifactId>dc-spring-boot-starter-core</artifactId>
    </dependency>

    <!-- websocket支持 -->
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-websocket</artifactId>
    </dependency>

    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-data-redis</artifactId>
      <optional>true</optional>
    </dependency>

      <dependency>
          <groupId>org.eclipse.jetty.ee11.websocket</groupId>
          <artifactId>jetty-ee11-websocket-jakarta-client</artifactId>
          <optional>true</optional>
      </dependency>

      <dependency>
          <groupId>org.eclipse.jetty.websocket</groupId>
          <artifactId>jetty-websocket-jetty-api</artifactId>
          <optional>true</optional>
      </dependency>
  </dependencies>


</project>
