3
0
Mirror von https://github.com/ViaVersion/ViaVersion.git synchronisiert 2024-09-27 22:30:06 +02:00

Removes VFP as well and recommends ViaBackwards/ViaRewind on both platforms (#4032)

Dieser Commit ist enthalten in:
EnZaXD 2024-07-21 09:43:40 +02:00 committet von GitHub
Ursprung f2f0be0581
Commit 6fb072120b
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: B5690EEEBB952194

Datei anzeigen

@ -63,7 +63,8 @@ if (!isRelease || isMainBranch) { // Only publish releases from the main branch
detectLoaders.set(false) detectLoaders.set(false)
dependencies { dependencies {
optional.project("viafabric") optional.project("viafabric")
optional.project("viafabricplus") optional.project("viabackwards")
optional.project("viarewind")
} }
} }
@ -78,10 +79,26 @@ if (!isRelease || isMainBranch) { // Only publish releases from the main branch
paper { paper {
jar.set(tasks.shadowJar.flatMap { it.archiveFile }) jar.set(tasks.shadowJar.flatMap { it.archiveFile })
platformVersions.set(listOf(property("mcVersionRange") as String)) platformVersions.set(listOf(property("mcVersionRange") as String))
dependencies {
hangar("ViaBackwards") {
required = false
}
hangar("ViaRewind") {
required = false
}
}
} }
velocity { velocity {
jar.set(tasks.shadowJar.flatMap { it.archiveFile }) jar.set(tasks.shadowJar.flatMap { it.archiveFile })
platformVersions.set(listOf(property("velocityVersion") as String)) platformVersions.set(listOf(property("velocityVersion") as String))
dependencies {
hangar("ViaBackwards") {
required = false
}
hangar("ViaRewind") {
required = false
}
}
} }
} }
} }