Skip to content

RockinChaos/ChaosCore

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

See ChaosCore' Wiki for the full detailed documentation on this API.

ChaosCore - A shaded core utility.


Description


ChaosCore is a spigot based developer API for use in shading integration into plugins.
More details coming soon...

Developer Notes


This plugin has taken up many countless hours and has had continued support for several years, please consider donating as it is the best way to support this API.

Required Libraries when compiling (there are no required dependencies, only softDepends):

* Bukkit/Spigot (Latest Official)
* Vault (Latest Official)
* AuthMe (Latest Official)
* BetterNick (Latest Official)
* HeadDatabase (Latest Official)
* PlaceholderAPI (Latest Official)
* SkinRestorerX (Latest Official)
* TokenEnchant (Latest Official)
* WorldEdit (Latest Official)
* WorldGuard (Latest Official)

Import with Maven


If you are using ChaosCore' API, you first have to import it into your project.

To import ChaosCore, simply add the following code to your pom.xml Replace {VERSION} with the version with the current release or snapshot version. This should look like 1.0.5-RELEASE or 1.0.4-SNAPSHOT as an example.

    <repositories>
    <!--CraftationGaming Repository-->
        <repository>
          <id>CraftationGaming-chaos</id>
          <url>https://repo.craftationgaming.com/chaos</url>
        </repository>
    </repositories>
    <dependencies>
    <!--ChaosCore API-->
        <dependency>
            <groupId>me.RockinChaos.core</groupId>
            <artifactId>ChaosCore</artifactId>
            <version>{VERSION}</version>
            <scope>compile</scope>
        </dependency>
    </dependencies>