719 B
719 B
What's the advantage of using separated dependencies?
The plugin's jar size is way smaller (1.8 MB → 12 KB)
How to use this plugin with separated dependencies:
- Copy plugin jar to
./plugins - Copy dependency jars to
./libs - Change your start script from
java -jar <server.jar> noguito...- For CraftBukkit / Spigot:
java -cp "<server.jar>:./libs/*" org.bukkit.craftbukkit.Main nogui - For PaperMC / Purpur:
java -cp "<server.jar>:./libs/*" -javaagent:<server.jar> io.papermc.paperclip.Paperclip nogui
- For CraftBukkit / Spigot:
- Note: You should replace the
:with;in the start script if you are using Windows. - Note: Replace
<server.jar>with the name of your CraftBukkit or Spigot jar file.