Skip to content

A simple, lightweight and easy-to-use library for rapid plugin creation.

Notifications You must be signed in to change notification settings

charnary/MCPluginLib

Repository files navigation

Spigot Plugin Library

A lightweight and easy to use library for fast plugin creation, built as a base for all my plugins, without the need to manually copy classes many times throughout each project.

Features

Our library comes with a few useful additions to help with boilerplate code, and we look to expand this as time goes on.

Using the Library

Maven

Add the following to your pom.xml

<repositories>
    <!-- Other repos.. -->
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>

Then, add the following dependency to your pom.xml

<dependency>
    <groupId>com.github.heychazza</groupId>
    <artifactId>spigot-plugin-lib</artifactId>
    <version>v1.3.8</version>
</dependency>

Gradle

Add the following to your build.gradle

allprojects {
    repositories {
        maven {
            url 'https://jitpack.io'
        }
    }
}

Then, add the following dependency to your build.gradle

dependencies {
   implementation 'com.github.heychazza:spigot-plugin-lib:v1.3.8'
}

Compiling

You can compile the library by running the following command.

./gradlew shadowJar

About

A simple, lightweight and easy-to-use library for rapid plugin creation.

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •