Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 1.04 KB

README.md

File metadata and controls

35 lines (28 loc) · 1.04 KB

monkey-netty

Build
An implementation of a server-client communication system for jMonkeyEngine using Netty.IO that utilizes both TCP and UDP communication.

Checkout our Wiki for getting started.

See example for server and client in examples module.

Installing with Gradle

Note: We will no longer be publishing packages to GitHub, future packages will be in Maven Central.
In your build.gradle you will need to:

dependencies {
    ...
    implementation 'io.tlf.monkeynetty:monkey-netty:0.1.2-SNAPSHOT'
}

Installing with Maven

Note: We will no longer be publishing packages to GitHub, future packages will be in Maven Central.
In your pom.xml you will need to:

<dependencies>
    ...
    <dependency>
        <groupId>io.tlf.monkeynetty</groupId>
        <artifactId>monkey-netty</artifactId>
        <version>0.1.2-SNAPSHOT</version>
    </dependency>
</dependencies>