Skip to content

HeadMonitor/MonitorLib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

59 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MonitorLib

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.

howToUse

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

Maven Setup

<!-- 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>

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.


support

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!