fastStats

Installation

Add FastStats to your Minecraft server project

Installation

Add the FastStats SDK to your project using Maven or Gradle.

maven {
  name = "thenextlvlReleases"
  url = uri("https://repo.thenextlvl.net/releases")
}

Platform-Specific Artifacts

Choose the artifact for your platform:

PlatformArtifact ID
Bukkit/Spigot/Paperbukkit
BungeeCordbungeecord
Fabricfabric
Hytalehytale
Minestomminestom
Nukkitnukkit
Spongesponge
Velocityvelocity
implementation("dev.faststats.metrics:bukkit:0.14.0")

Shading

To include FastStats directly in your plugin JAR, you can use the Maven Shade or Gradle Shadow Plugin.

plugins {
  id("com.gradleup.shadow") version "9.3.0"
}

tasks.shadowJar {
relocate("dev.faststats", "your.plugin.libs.faststats") // optionally relocate the package
}

On this page