A lightweight library for making Bukkit plugins
Currently BukkitBootstrap has the following features
- Config
- Gui
- CustomItems
You can download a jar from the releases. However I recommend to use jitpack to download it using maven or gradle. This also has the advantage that you can use the latest development version without having to build it yourself
Please replace VERSION below with the version shown above!
Maven
<dependency>
<groupId>com.github.the-codeboys</groupId>
<artifactId>BukkitBootstrap</artifactId>
<version>VERSION</version>
</dependency>
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Gradle
dependencies {
implementation 'com.github.the-codeboys:BukkitBootstrap:VERSION'
}
repositories {
maven { url 'https://jitpack.io' }
}
- MCIDE: a working code editor that can run code directly in minecraft
You're using BukkitBootstrap and want to see your project here? Just make an issue for it