Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 1.23 KB

README.md

File metadata and controls

41 lines (27 loc) · 1.23 KB

Feli Utils

This Minecraft Plugin is mainly used by my own Plugins to supply some Utility Methods wich I often use for my plugins. Of course if you want you are allowed to use this plugin in your own Projects 😄


Releases

Last Stable Release: Click here

Last Development Version: Click here

All versions are build on our Jenkins Server: here


Use FeliUtils in your own Plugin

For maven Users you can just add our repository.

    <repository>
        <id>ehemanns-repo</id>
        <url>https://repo.ehemanns.de/repository/maven-public/</url>
    </repository>

Then you can just add the plugin as your dependency:

    <dependency>
        <groupId>de.feli490.plugins</groupId>
        <artifactId>FeliUtils</artifactId>
        <version>CHOOSEN-VERSION</version>
        <scope>provided</scope>
    </dependency>

Now you can just use every Util Method / Class of the Plugin.
To ensure complete functionality you should add this Plugin as (Soft-)Dependency in your Plugin.yml:

depend: [FeliUtils]