Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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)

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**
```xml

unnamed-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**
```xml

team.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")
}
```