Skip to content

Latest commit

 

History

History
86 lines (64 loc) · 2.09 KB

File metadata and controls

86 lines (64 loc) · 2.09 KB

Bits

💾 A Utility library for Minecraft development.

JitPack License

About

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.

Features:

  • 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!

Installation

Gradle (Kotlin DSL)

repositories {
    mavenCentral()
    maven { url = uri("https://jitpack.io") }
}

dependencies {
    // Core API (required)
    implementation("com.github.ImBit.Bits:API:0.0.8")

    // Paper implementation
    implementation("com.github.ImBit.Bits:Paper:0.0.8")

    // Velocity implementation
    implementation("com.github.ImBit.Bits:Velocity:0.0.8")
}

Maven

<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.8</version>
</dependency>

<!-- Paper implementation -->
<dependency>
    <groupId>com.github.ImBit.Bits</groupId>
    <artifactId>Paper</artifactId>
    <version>0.0.8</version>
</dependency>

<!-- Velocity implementation -->
<dependency>
    <groupId>com.github.ImBit.Bits</groupId>
    <artifactId>Velocity</artifactId>
    <version>0.0.8</version>
</dependency>
</dependencies>

Libraries

  • API - Core interfaces and abstractions
  • Paper - Paper platform implementation
  • Velocity - Velocity platform implementation

Made with 🦑 by ImBit