/Roble

Primary LanguageJava

Roble

A large plugin creation library use made to save time and encourage more focus on the original idea of your plugin!

Maven

	<repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
	</repositories>
	<dependency>
	    <groupId>com.github.XZot1K</groupId>
	    <artifactId>Roble</artifactId>
	    <version>VERSION</version>
	</dependency>

Replace 'VERSION' with the tag needed found under the releases tab.

Gradle

	allprojects {
		repositories {
			...
			maven { url 'https://jitpack.io' }
		}
	}
        dependencies {
	        implementation 'com.github.XZot1K:Roble:VERSION'
	}

Replace 'VERSION' with the tag needed found under the releases tab.