TrashPlugin

Simple Spigot/Paper plugin that opens a "Trash Bin" GUI via /trash. Items placed into the GUI are deleted after a confirmation step.

Overview

This repository provides a minimal Minecraft server plugin using the Spigot API (Maven project). The plugin offers:

Requirements

Build

From the project root (where pom.xml lives):

mvn -DskipTests package

On success the plugin jar will be produced at:

target/trash-plugin-1.0-SNAPSHOT.jar

Install on a server

  1. Copy the built jar to your server's plugins/ directory. Example (PowerShell):
  2. Copy-Item -Path '.\target\trash-plugin-1.0-SNAPSHOT.jar' -Destination 'C:\path\to\server\plugins\' -Force
  3. Start or restart your Spigot/Paper server. Accept the EULA if required (eula.txt).
  4. Check server logs for the plugin enabling: look for "TrashPlugin enabled"

Usage

Command & Permissions

The plugin currently registers one command in plugin.yml:

Behavior & Implementation Notes

Development notes

Key source files:

Suggested next dev tasks:

Troubleshooting

License

This project is provided as-is. Add a LICENSE file in the repo root to declare a license (MIT/Apache/etc.) if you want to distribute it.