mirror of
https://github.com/ViaVersion/ViaAprilFools.git
synced 2025-01-23 21:31:20 +01:00
14 lines
290 B
Groovy
14 lines
290 B
Groovy
plugins {
|
|
id "vaf.platform-conventions"
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(annotationProcessor("org.spigotmc:spigot-api:1.12.2-R0.1-SNAPSHOT"))
|
|
}
|
|
|
|
processResources {
|
|
filesMatching("plugin.yml") {
|
|
expand("version": project.version, "description": project.description)
|
|
}
|
|
}
|