Skip to content
James Fitzpatrick edited this page Dec 2, 2013 · 2 revisions

Banner

We have tried to provide a extensive API for MineKart so that anything can be altered or added to without changing the main source of the plugin.

To include MineKart API in your plugin the easiest way is to build using maven and include us as a dependency. You can do this via our maven repository which is linked bellow.

<repositories>
    ...
    <repository>
        <id>CodingBadgers-repo</id>
        <url>http://repository-codingbadgers.forge.cloudbees.com/snapshot/</url>
    </repository>
    ...
</repositories>

<dependencies>
    ...
    <dependency>
        <groupId>uk.thecodingbadgers</groupId>
        <artifactId>minekart</artifactId>
        <version>1.0.0</version>
    </dependency>
    ...
</dependencies>

Once you have MineKart included you can do anything from adding a new racecourse type, to adding new powerup types.

We will be adding more functionality to the APIas we go along and if you have any suggestions on what to add feel free to post them on the issue tracker or create a pull request including the requested feature.

Guides

Useful Documentation

Clone this wiki locally