Skip to content
This repository has been archived by the owner on Apr 10, 2023. It is now read-only.
/ scoreboard Public archive

Lightweight and fast scoreboard library for Spigot supporting most Minecraft versions (WIP)

License

Notifications You must be signed in to change notification settings

unnamed/scoreboard

Repository files navigation

unnamed/scoreboard Build Status MIT License

unnamed/scoreboard (or µboard) is a very fast and lightweight library for the creation of Minecraft scoreboards in the Bukkit API. µboard has an extensible API that can be adapted to every Minecraft server version.

Download

You can simply download the JAR from GitHub from the Releases section or using Maven or Gradle (recommended)

Repository

Maven - pom.xml

<repository>
    <id>unnamed-public</id>
    <url>https://repo.unnamed.team/repository/unnamed-public/</url>
</repository>

Gradle - build.gradle(.kts)

build.gradle (Groovy DSL)

repositories {
    maven { url 'https://repo.unnamed.team/repository/unnamed-public/' }
}

build.gradle.kts (Kotlin DSL)

repositories {
    maven("https://repo.unnamed.team/repository/unnamed-public/")
}

Dependency

  • Latest snapshot: not yet!
  • Latest release: not yet!

Maven - pom.xml

<dependency>
    <groupId>team.unnamed.scoreboard</groupId>
    <artifactId>scoreboard-api</artifactId>
    <version>VERSION</version>
</dependency>

Gradle - build.gradle(.kts)

build.gradle (Groovy DSL)

dependencies {
    implementation 'team.unnamed.scoreboard:scoreboard-api:VERSION'
}

build.gradle.kts (Kotlin DSL)

dependencies {
    implementation("team.unnamed.scoreboard:scoreboard-api:VERSION")
}

About

Lightweight and fast scoreboard library for Spigot supporting most Minecraft versions (WIP)

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published