RedisBungee-JavaDocs

Java docs:

API Click here Bungeecord Events Click here

Implementing RedisBungee in your plugin: RedisBungee Build

RedisBungee is distributed as a maven project.

first, install it to your maven local repo as we don’t have public maven repo.

git clone https://github.com/ProxioDev/RedisBungee.git
cd RedisBungee
mvn clean install

then to import for bungeecord use:

<dependency>
        <groupId>com.imaginarycode.minecraft</groupId>
        <artifactId>RedisBungee-Bungee</artifactId>
        <version>0.7.2-SNAPSHOT</version>
        <scope>provided</scope>
</dependency>

Second method by using jitpack

first, add this repository

	<repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
	</repositories>

then add this in your dependencies

	<dependency>
	    <groupId>com.github.limework.redisbungee</groupId>
	    <artifactId>RedisBungee</artifactId>
	    <version>0.7.2</version>
	</dependency>