A template for building PaperMC/Spigot Minecraft server plugins!
- Automated builds, testing, and release drafting
- Discord notifcations for snapshots and releases
- Probot: Stale
- Mark issues stale after 30 days
- Dependabot
- Update GitHub Actions workflows
- Update Gradle dependencies
- Bug report template
- Feature request template
- Shadowed PaperLib build
- Checkstyle Google standard style check
- SpotBugs code analysis
- JUnit testing
- Sample plugin.yml with autofill name, version, and main class.
- Empty config.yml (just to make life *that* much easier)
- Gradle build config
- Simple .gitignore for common Gradle files
In order to use this template for yourself, there are a few things that you will need to keep in mind.
Here's a list of the PaperMC versions and the versions of this latest compatible version.
PaperMC | ExamplePlugin |
---|---|
1.21.1 | 3.12.2+ |
1.21 | 3.12.0 |
1.20.6 | 3.11.0 |
1.20.4 | 3.9.3 |
1.20.2 | 3.8.4 |
1.20.1 | 3.7.1 |
1.19.4 | 3.2.1 |
1.18.2 | 3.0.2 |
1.17.1 | 2.2.0 |
1.16.5 | 2.1.2 |
This chart would make more sense if this plugin actually did anything and people would have a reason to be looking for older releases to run on older servers.
To use this as a template, just use the latest version of this project and update the PaperMC version as needed. See more info on release stability below.
Stable versions of this repo are tagged vX.Y.Z
and have an associated release.
Testing versions of this repo are tagged vX.Y.Z-RC-N
and have an associated pre-release.
Development versions of this repo are pushed to the master branch and are not tagged.
Event | Plugin Version Format | CI Action | GitHub Release Draft? |
---|---|---|---|
PR | yyMMdd-HHmm-SNAPSHOT | Build and test | No |
Cron | yyMMdd-HHmm-SNAPSHOT | Build, test, and notify | No |
Push to main |
0.0.0-SNAPSHOT | Build, test, release, and notify | No |
Tag vX.Y.Z-RC-N |
X.Y.Z-SNAPSHOT | Build, test, release, and notify | Pre-release |
Tag vX.Y.Z |
X.Y.Z | Build, test, release, and notify | Release |
In order to use Discord notifications, you will need to create two GitHub secrets. DISCORD_WEBHOOK_ID
should be set to the id of your Discord webhook. DISCORD_WEBHOOK_TOKEN
will be the token for the webhook.
You can find these values by copying the Discord Webhook URL:
https://discord.com/api/webhooks/<DISCORD_WEBHOOK_ID>/<DISCORD_WEBHOOK_TOKEN>
Optionally, you can also configure DISCORD_RELEASE_WEBHOOK_ID
and DISCORD_RELEASE_WEBHOOK_TOKEN
to send release announcements to a separate channel.
For more information, see Discord Message Notify.
I've broken the rest of the changes up by their files to make things a bit easier to find.
Update the line below with the name of your plugin.
rootProject.name = 'ExamplePlugin'
Make sure to update the group
to your package's name in the following section.
group = "com.crimsonwarpedcraft.exampleplugin"
Add any required repositories for your dependencies in the following section.
repositories {
maven {
name 'papermc'
url 'https://papermc.io/repo/repository/maven-public/'
content {
includeModule("io.papermc.paper", "paper-api")
includeModule("io.papermc", "paperlib")
includeModule("net.md-5", "bungeecord-chat")
}
}
mavenCentral()
}
Also, update your dependencies as needed (of course).
dependencies {
compileOnly 'io.papermc.paper:paper-api:1.20.1-R0.1-SNAPSHOT'
compileOnly 'com.github.spotbugs:spotbugs-annotations:4.7.3'
implementation 'io.papermc:paperlib:1.0.8'
spotbugsPlugins 'com.h3xstream.findsecbugs:findsecbugs-plugin:1.12.0'
testCompileOnly 'com.github.spotbugs:spotbugs-annotations:4.7.3'
testImplementation 'io.papermc.paper:paper-api:1.20.1-R0.1-SNAPSHOT'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.0'
}
First, update the following with your information.
author: AUTHOR
description: DESCRIPTION
Next, the commands
and permissions
sections below should be updated as needed.
commands:
ex:
description: Base command for EXAMPLE
usage: "For a list of commands, type /ex help"
aliases: example
permissions:
example.test:
description: DESCRIPTION
default: true
example.*:
description: Grants all other permissions
default: false
children:
example.test: true
You will need to replace all instances of leviem1
, such as the one below, with your GitHub
username.
reviewers:
- "leviem1"
You will need to replace leviem1
, with your GitHub username.
* @leviem1
Update or delete this file, whatever applies to you.
github: leviem1
For more information see: Displaying a sponsor button in your repository
If you chose to adopt a Code of Conduct for your project, please update line 63 with your preferred contact method.
Below are the steps you should follow to create a release.
- Create a tag on
main
using semantic versioning (e.g. v0.1.0) - Push the tag and get some coffee while the workflows run
- Publish the release draft once it's been automatically created
Thanks to Gradle, building locally is easy no matter what platform you're on. Simply run the following command:
./gradlew build
This build step will also run all checks and tests, making sure your code is clean.
JARs can be found in build/libs/
.
See CONTRIBUTING.md.
I think that's all... phew! Oh, and update this README! ;)