Mirror von
https://github.com/GeyserMC/Geyser.git
synchronisiert 2024-11-06 00:00:26 +01:00
21 Zeilen
638 B
Plaintext
21 Zeilen
638 B
Plaintext
plugins {
|
|
id("geyser.publish-conventions")
|
|
id("io.freefair.lombok")
|
|
}
|
|
|
|
tasks {
|
|
processResources {
|
|
// Spigot, BungeeCord, Velocity, Fabric, ViaProxy, NeoForge
|
|
filesMatching(listOf("plugin.yml", "bungee.yml", "velocity-plugin.json", "fabric.mod.json", "viaproxy.yml", "META-INF/neoforge.mods.toml")) {
|
|
expand(
|
|
"id" to "geyser",
|
|
"name" to "Geyser",
|
|
"version" to project.version,
|
|
"description" to project.description,
|
|
"url" to "https://geysermc.org",
|
|
"author" to "GeyserMC"
|
|
)
|
|
}
|
|
}
|
|
}
|