Files
ExamplePlugin/README.md
2026-01-15 22:36:39 +03:00

634 B

Full Example Plugin

Standalone example plugin that uses the Database API.

Build

  1. Publish Database plugin to local Maven:
./gradlew publishToMavenLocal
  1. Build this example:
./gradlew build
  1. Drop the jar into your server plugins folder.

Notes

  • This plugin depends on the Database plugin at runtime.
  • Check plugin.yml for depend: [ Database ].
  • For full coverage, toggle RUN_ADVANCED (JOIN/GROUP BY/HAVING) and RUN_DESTRUCTIVE (create/drop database and demo tables) in examples/FullPlugin/src/main/java/com/andrewkydev/example/full/run/ExampleCoordinator.java.