[ci skip] Add a test plugin (#6133)
This commit is contained in:
17
test-plugin/build.gradle.kts
Normal file
17
test-plugin/build.gradle.kts
Normal 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)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user