### Instructions In `pom.xml`: ```xml eu.m724 mstats-spigot ``` In `plugin.yml`: ```yaml libraries: - eu.m724:mstats-spigot ``` In main class: ```java import eu.m724.mstats.MStats; import org.bukkit.plugin.java.JavaPlugin; public class MyPlugin extends JavaPlugin { @Override public void onEnable() { // it's recommended that this is the last line of onEnable int mStatsId = 1; // replace this of course with your plugin ID MStats.init(this, mStatsId); } } ```