Ensure we load mod resources correctly on Geyser-NeoForge (#4651)

* correctly load jar resource files on neoforge

* also add support for neoforge-floodgate
This commit is contained in:
chris 2024-05-12 10:49:08 +02:00 committed by GitHub
parent 7801e357fb
commit 86dafbc108
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 28 additions and 6 deletions

View file

@ -31,7 +31,9 @@ dependencies {
// Let's shade in our own api
shadow(projects.api) { isTransitive = false }
shadow(projects.common) { isTransitive = false }
// cannot be shaded, since neoforge will complain if floodgate-neoforge tries to provide this
include(projects.common)
// Include all transitive deps of core via JiJ
includeTransitive(projects.core)