💾 A Utility library for Minecraft development.
Bits is a multi-platform Minecraft utility library designed to streamline plugin development across Paper and Velocity platforms. It provides common utilities, abstractions, and helper classes to reduce boilerplate code and accelerate your development workflow.
- Multi-platform support
- Annotation-based Brigadier Command API (Paper, Velocity, +)
- Automatic Text formatting
- Common Plugin utilities (Color, Sound, Location, Item, Math, Permission APIs)
Note
This project is in active development, expect regular changes and additions!
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
dependencies {
// Core API (required)
implementation("com.github.ImBit.Bits:API:0.0.6")
// Paper implementation
implementation("com.github.ImBit.Bits:Paper:0.0.6")
// Velocity implementation
implementation("com.github.ImBit.Bits:Velocity:0.0.6")
}<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependencies>
<!-- Core API (required) -->
<dependency>
<groupId>com.github.ImBit.Bits</groupId>
<artifactId>API</artifactId>
<version>0.0.6</version>
</dependency>
<!-- Paper implementation -->
<dependency>
<groupId>com.github.ImBit.Bits</groupId>
<artifactId>Paper</artifactId>
<version>0.0.6</version>
</dependency>
<!-- Velocity implementation -->
<dependency>
<groupId>com.github.ImBit.Bits</groupId>
<artifactId>Velocity</artifactId>
<version>0.0.6</version>
</dependency>
</dependencies>- API - Core interfaces and abstractions
- Paper - Paper platform implementation
- Velocity - Velocity platform implementation
Made with 🦑 by ImBit