Welcome to the Hangar Open Beta. Please report any issue you encounter on GitHub!
Avatar for HeadMonitor

A Minecraft Plugin Library to make your life developing, easier.

Report MonitorLib?
features

A Minecraft Plugin Library to make your life developing, easier.

mobCreatorGUI mobCreatorGUI mobCreatorGUI mobCreatorGUI mobCreatorGUI

features
  • Item, Skull and Entity Creators.
  • Material, Enchantment, Potion Utilities.
  • Adventure Component and Readability Utilities.

features

You can find the Wiki for the Library here and the JavaDoc here!

Maven Setup

<!-- If you are using Spigot -->
<dependency>
    <groupId>net.headmonitor</groupId>
    <artifactId>MonitorLibSpigot</artifactId>
    <version>[VERSION]</version>
</dependency>

<!-- If you are using Paper -->
<dependency>
    <groupId>net.headmonitor</groupId>
    <artifactId>MonitorLibPaper</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>

Manual Setup

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.


features

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!

Information

CategoryDeveloper Tools
Published onApril 18, 2025
LicenseMIT
Download1
Stars1
Watchers0
Library

Pinned Versions

Members