1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?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">
- <parent>
- <artifactId>pwt</artifactId>
- <groupId>com.pwt</groupId>
- <version>3.8.4</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>pwt-netty</artifactId>
- <description>
- netty站控网络框架
- </description>
- <dependencies>
- <!-- 通用工具-->
- <dependency>
- <groupId>com.pwt</groupId>
- <artifactId>pwt-common</artifactId>
- </dependency>
- <dependency>
- <groupId>com.pwt</groupId>
- <artifactId>pwt-framework</artifactId>
- </dependency>
- <!-- netty -->
- <dependency>
- <groupId>io.netty</groupId>
- <artifactId>netty-all</artifactId>
- <version>4.1.36.Final</version>
- </dependency>
- <!-- lombok组件 -->
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-test</artifactId>
- <version>5.2.22.RELEASE</version>
- </dependency>
- <dependency>
- <groupId>org.junit.jupiter</groupId>
- <artifactId>junit-jupiter</artifactId>
- <version>5.9.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>com.github.dathlin</groupId>
- <artifactId>HslCommunication</artifactId>
- <version>3.3.1</version>
- </dependency>
- <!-- Swagger3依赖 -->
- <dependency>
- <groupId>io.springfox</groupId>
- <artifactId>springfox-boot-starter</artifactId>
- <version>3.0.0</version>
- <exclusions>
- <exclusion>
- <groupId>io.swagger</groupId>
- <artifactId>swagger-models</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>com.pwt</groupId>
- <artifactId>pwt-charger-api</artifactId>
- <version>3.8.4</version>
- </dependency>
- </dependencies>
- </project>
|