codec
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.ppzxc</groupId> <artifactId>codec</artifactId> <version>0.1.18</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>io.github.ppzxc</groupId> <artifactId>codec</artifactId> <version>0.1.18</version> <name>codec</name> <description>Default Codec For Tcp Communication Using Netty.</description> <url>https://github.com/ppzxc/codec</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <id>ppzxc</id> <name>JeongHa Cho</name> <email>cjh8487@naver.com</email> <url>https://github.com/ppzxc/</url> </developer> </developers> <scm> <connection>scm:git:git://github.com/ppzxc/codec.git</connection> <developerConnection>scm:git:ssh://git@github.com/ppzxc/codec.git</developerConnection> <url>https://github.com/ppzxc/codec</url> </scm> <dependencies> <dependency> <groupId>io.netty</groupId> <artifactId>netty-buffer</artifactId> <version>4.1.107.Final</version> <scope>runtime</scope> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-codec</artifactId> <version>4.1.107.Final</version> <scope>runtime</scope> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-handler</artifactId> <version>4.1.107.Final</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.11</version> <scope>runtime</scope> </dependency> <dependency> <groupId>io.github.ppzxc</groupId> <artifactId>fixh</artifactId> <version>0.0.23</version> <scope>runtime</scope> </dependency> <dependency> <groupId>io.github.ppzxc</groupId> <artifactId>crypto</artifactId> <version>0.0.42</version> <scope>runtime</scope> </dependency> <dependency> <groupId>de.undercouch</groupId> <artifactId>bson4jackson</artifactId> <version>2.15.1</version> <scope>runtime</scope> <optional>true</optional> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.15.3</version> <scope>runtime</scope> <optional>true</optional> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jsr310</artifactId> <version>2.15.3</version> <scope>runtime</scope> <optional>true</optional> </dependency> </dependencies> </project>