alejzeis / JRakLibPlus

An enhanced port of PHP RakLib, based on JRakLib
GNU Lesser General Public License v3.0
10 stars 5 forks source link

JRakLibPlus Travis [GitHub license]()

A library for easy creation of RakNet servers, based on RakLib and JRakLib.

Instructions on how to use the library can be found on the wiki

Currently supported features:

Compiling

JRakLibPlus uses maven for dependencies. To build from source you need Oracle JDK 8 and Maven 3+. To build the JAR simply run mvn package

Using from maven

To include the library in your application add the following to your POM:

<repositories>
        <repository>
            <id>snapshot-repo</id>
            <url>https://raw.githubusercontent.com/BlockServerProject/MavenRepository/master/snapshots</url>
        </repository>
</repositories>
...
<dependencies>
        <dependency>
            <groupId>io.github.jython234.jraklibplus</groupId>
            <artifactId>JRakLibPlus</artifactId>
            <version>1.2-SNAPSHOT</version>
        </dependency>
</dependencies>
...