Paper Plugin Template Project Setup Generate the repository using this template Clone the repository to your local machine Open the project in IntelliJ IDEA Replace rootProject.name in settings.gradle.kts with the name of your plugin Replace the Constants in build.gradle.kts with appropriate values for your plugin Sync the Gradle project Development Create a package structure such as dev.erudites.template under src/main/java/ Create the plugin class TemplatePlugin.java in src/main/java/dev/erudites/template/ Make TemplatePlugin extend JavaPlugin Define the main class and authors in src/main/resources/plugin.yml Gradle Tasks ./gradlew build - Builds the plugin JAR file ./gradlew runServer - Runs a local server for testing the plugin