Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/unnamed/scoreboard
Lightweight and fast scoreboard library for Spigot supporting most Minecraft versions (WIP)
https://github.com/unnamed/scoreboard
bukkit minecraft scoreboard spigot
Last synced: 2 months ago
JSON representation
Lightweight and fast scoreboard library for Spigot supporting most Minecraft versions (WIP)
- Host: GitHub
- URL: https://github.com/unnamed/scoreboard
- Owner: unnamed
- License: mit
- Created: 2021-07-23T05:16:14.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-09T05:14:22.000Z (about 3 years ago)
- Last Synced: 2023-03-04T01:07:46.715Z (almost 2 years ago)
- Topics: bukkit, minecraft, scoreboard, spigot
- Language: Java
- Homepage:
- Size: 93.8 KB
- Stars: 9
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license.txt
Awesome Lists containing this project
README
# unnamed/scoreboard ![Build Status](https://img.shields.io/github/workflow/status/unnamed/scoreboard/build/main) [![MIT License](https://img.shields.io/badge/license-MIT-blue)](license.txt)
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](https://maven.apache.org/) or [Gradle](https://gradle.org/) (recommended)
### Repository
**Maven - pom.xml**
```xmlunnamed-public
https://repo.unnamed.team/repository/unnamed-public/```
**Gradle - build.gradle(.kts)**build.gradle (Groovy DSL)
```groovy
repositories {
maven { url 'https://repo.unnamed.team/repository/unnamed-public/' }
}
```build.gradle.kts (Kotlin DSL)
```kotlin
repositories {
maven("https://repo.unnamed.team/repository/unnamed-public/")
}
```### Dependency
- Latest snapshot: not yet!
- Latest release: not yet!**Maven - pom.xml**
```xmlteam.unnamed.scoreboard
scoreboard-api
VERSION```
**Gradle - build.gradle(.kts)**build.gradle (Groovy DSL)
```groovy
dependencies {
implementation 'team.unnamed.scoreboard:scoreboard-api:VERSION'
}
```build.gradle.kts (Kotlin DSL)
```kotlin
dependencies {
implementation("team.unnamed.scoreboard:scoreboard-api:VERSION")
}
```