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.
You can simply download the JAR from GitHub from the Releases section or using Maven or Gradle (recommended)
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/")
}
- 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")
}