Mirror von
https://github.com/GeyserMC/Geyser.git
synchronisiert 2024-11-06 00:00:26 +01:00
28 Zeilen
517 B
Plaintext
28 Zeilen
517 B
Plaintext
plugins {
|
|
id("geyser.modded-conventions")
|
|
}
|
|
|
|
architectury {
|
|
common("neoforge", "fabric")
|
|
}
|
|
|
|
loom {
|
|
mixin.defaultRefmapName.set("geyser-refmap.json")
|
|
}
|
|
|
|
afterEvaluate {
|
|
// We don't need these
|
|
tasks.named("remapModrinthJar").configure {
|
|
enabled = false
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
api(projects.core)
|
|
compileOnly(libs.mixin)
|
|
compileOnly(libs.mixinextras)
|
|
|
|
// Only here to suppress "unknown enum constant EnvType.CLIENT" warnings. DO NOT USE!
|
|
compileOnly(libs.fabric.loader)
|
|
}
|