mirror of
https://github.com/GeyserMC/Floodgate.git
synced 2026-01-04 15:31:48 +00:00
* rebase * split fabric/neoforge specific code * more progress * dependency configuration * exclude more junk * neo, you make me go insane * neoforge seems to work! * some minor cleanup, add neoforge command module * mixin config plugin shenanigans * fix language strings loading * some cleanup, yeet Jenkinsfile * proper repository declaration using plugin, target jitpack branch * oops * address reviews * Update for 1.21 * some minor fixes * Fix modrinth task, add floodgate version command mixin to disable version checking, update to loom 1.7, update cloud, update floodgate core to not use my branch * oops * what on earth is going on now * neoforge works again!!!!!!!!! * Address review, dont rely on locals in mixin * modrinth version/name changes, similar to geyser * Update README.md Co-authored-by: Konicai <71294714+Konicai@users.noreply.github.com> * Improve handling of PayloadRegistrar this took years off my life * address review * Move blossom version declaration to libs.versions.toml * remove unused versions from catalogue * Only run modrinth task if successful & on Geyser repo * cleanup & fix gh actions building/archiving * run and uses are different steps --------- Co-authored-by: Konicai <71294714+Konicai@users.noreply.github.com>
35 lines
793 B
Plaintext
35 lines
793 B
Plaintext
@file:Suppress("UnstableApiUsage")
|
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
maven("https://repo.opencollab.dev/main/")
|
|
maven("https://jitpack.io") {
|
|
content {
|
|
includeGroupByRegex("com\\.github\\..*")
|
|
}
|
|
}
|
|
|
|
maven("https://maven.architectury.dev/")
|
|
maven("https://maven.neoforged.net/releases")
|
|
maven("https://maven.fabricmc.net/")
|
|
}
|
|
|
|
plugins {
|
|
id("net.kyori.blossom")
|
|
id("net.kyori.indra")
|
|
id("net.kyori.indra.git")
|
|
id("floodgate-modded.build-logic")
|
|
}
|
|
|
|
includeBuild("build-logic")
|
|
}
|
|
|
|
rootProject.name = "floodgate-modded"
|
|
|
|
include(":mod")
|
|
include(":fabric")
|
|
include(":neoforge")
|