# monkey-netty **Repository Path**: flavie/monkey-netty ## Basic Information - **Project Name**: monkey-netty - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-04-23 - **Last Updated**: 2021-04-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # monkey-netty ![Build](https://github.com/tlf30/monkey-netty/workflows/Java%20CI%20with%20Gradle/badge.svg) An implementation of a server-client communication system for jMonkeyEngine using Netty.IO that utilizes both TCP and UDP communication. **Checkout our [Wiki](https://github.com/tlf30/monkey-netty/wiki) for getting started.** **See example for server and client in `examples` module.** ## Installing with Gradle In your `build.gradle` you will need to: 1. Include the github repo: ```groovy repositories { ... maven { url = 'https://maven.pkg.github.com/tlf30/monkey-netty' } } ``` 2. Specify the dependency: ```groovy dependencies { ... implementation 'io.tlf.monkeynetty:monkey-netty:0.1.0' } ``` ## Installing with Maven In your pom.xml you will need to: 1. Include the github repo: ```xml ... monkey-netty Monkey-Netty GitHub Packages https://maven.pkg.github.com/tlf30/monkey-netty ``` 2. Specify the dependency: ```xml ... io.tlf.monkeynetty monkey-netty 0.1.0 ```