Skip to content

cyklon73/SpigotUtils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

91 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

logo

SpigotUtils

A library that provides various utilities for the development of Spigot plugins. Among them a UI package

IMPORTANT You don't need to add the jar to your plugin folder, it's enough if you add the library to your project via gradle or maven.

Add it to your Project

you can add it to your project with maven or gradle. Replace {VERSION} with the most recent version of SpigotUtils You find the Version on the Github repository

find-version

Maven

<repositories>  
	<repository>  
		<id>jitpack.io</id>  
		<url>https://jitpack.io/</url>  
	</repository>  
</repositories>  
  
<dependencies>  
	<dependency>  
		<groupId>com.github.cyklon73</groupId>  
		<artifactId>SpigotUtils</artifactId>  
		<version>{VERSION}</version>  
	</dependency>  
</dependencies>

Gradle

repositories {  
	mavenCentral()  
	maven { url "https://jitpack.io"  }  
}  
  
  
dependencies {  
	implementation 'com.github.cyklon73:SpigotUtils:{VERSION}'  
}

About

Utils for Spigot (GUI package, other utils...)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages