kcp-base
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.l42111996</groupId>
<artifactId>kcp-base</artifactId>
<version>1.6.2</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">
<parent>
<artifactId>java-Kcp</artifactId>
<groupId>com.github.l42111996</groupId>
<version>1.6.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<properties>
<disruptor.version>3.4.4</disruptor.version>
</properties>
<artifactId>kcp-base</artifactId>
<name>kcp-base</name>
<description>Java implementation of KCP based on Netty</description>
<url>https://github.com/l42111996/java-Kcp</url>
<dependencies>
<dependency>
<groupId>com.github.l42111996</groupId>
<artifactId>kcp-fec</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.lmax</groupId>
<artifactId>disruptor</artifactId>
<version>${disruptor.version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.jctools</groupId>
<artifactId>jctools-core</artifactId>
<version>3.3.0</version>
</dependency>
</dependencies>
</project>