A Minecraft Plugin Library to make your life developing, easier.
- Item, Skull and Entity Creators.
- Material, Enchantment, Potion Utilities.
- Adventure Component and Readability Utilities.
You can find the Wiki for the Library here and the JavaDoc here!
<!-- If you are using Paper -->
<dependency>
<groupId>net.headmonitor</groupId>
<artifactId>MonitorLibPaper</artifactId>
<version>[VERSION]</version>
</dependency>
<!-- If you are using Spigot -->
<dependency>
<groupId>net.headmonitor</groupId>
<artifactId>MonitorLibSpigot</artifactId>
<version>[VERSION]</version>
</dependency>
You will also need to shade the Library into your .jar file.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.6.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<relocations>
<relocation>
<pattern>net.headmonitor</pattern>
<shadedPattern>your.plugin.libs.headmonitor</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
If you want to use the Library without Build Automation Tools you can download the .jar and add it as a dependency in your IDE. Make sure you extract it in your .jar file.
You can get Support, Request a Feature or Report a Bug through a GitHub Issue or through my Discord. I will my our best to help you out!