[ci skip] Add a test plugin (#6133)

This commit is contained in:
Jason Penilla
2021-07-09 03:04:33 -07:00
parent 43e9be4586
commit 5fe7fbd769
6 changed files with 51 additions and 1 deletions

View File

@ -0,0 +1,17 @@
version = "1.0.0-SNAPSHOT"
repositories {
maven("https://libraries.minecraft.net")
}
dependencies {
compileOnly(project(":Paper-API"))
compileOnly(project(":Paper-MojangAPI"))
}
tasks.processResources {
inputs.property("version", project.version)
filesMatching("plugin.yml") {
expand("version" to project.version)
}
}