3
0
Mirror von https://github.com/GeyserMC/Geyser.git synchronisiert 2024-11-06 00:00:26 +01:00
Geyser/build-logic/src/main/kotlin/geyser.platform-conventions.gradle.kts

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"
)
}
}
}