wsgateway
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.ecfront.dew</groupId>
<artifactId>wsgateway</artifactId>
<version>1.1.4</version>
</dependency><?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.ecfront.dew</groupId>
<artifactId>parent</artifactId>
<version>1.1.4</version>
<relativePath>../../modules/parent/pom.xml</relativePath>
</parent>
<artifactId>wsgateway</artifactId>
<name>Dew WSGateway</name>
<description>Dew Websocket网关服务</description>
<packaging>jar</packaging>
<version>1.1.4</version>
<properties>
<vertx.version>3.4.0</vertx.version>
</properties>
<dependencies>
<dependency>
<groupId>com.ecfront.dew</groupId>
<artifactId>cloud-core</artifactId>
<version>${dew.version}</version>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</exclusion>
<exclusion>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
</exclusion>
<exclusion>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-core</artifactId>
<version>${vertx.version}</version>
</dependency>
</dependencies>
</project>