light-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.iohao.game</groupId> <artifactId>light-client</artifactId> <version>21.28</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.iohao.game</groupId> <artifactId>ioGame</artifactId> <version>21.28</version> <relativePath>../../pom.xml</relativePath> </parent> <artifactId>light-client</artifactId> <dependencies> <dependency> <groupId>com.iohao.game</groupId> <artifactId>external-netty</artifactId> <version>${project.parent.version}</version> </dependency> <!-- 模拟客户端 https://mvnrepository.com/artifact/org.java-websocket/Java-WebSocket --> <dependency> <groupId>org.java-websocket</groupId> <artifactId>Java-WebSocket</artifactId> <version>1.5.3</version> </dependency> </dependencies> </project>