mirror of
https://github.com/GeyserMC/Geyser.git
synced 2025-01-03 17:52:15 +01:00
Shade the Geyser api on modded platforms (#4520)
This commit is contained in:
parent
c64e8afcce
commit
d24a4766b4
2 changed files with 8 additions and 1 deletions
|
@ -39,6 +39,9 @@ dependencies {
|
||||||
// Since we also relocate cloudburst protocol: shade erosion common
|
// Since we also relocate cloudburst protocol: shade erosion common
|
||||||
shadow(libs.erosion.common) { isTransitive = false }
|
shadow(libs.erosion.common) { isTransitive = false }
|
||||||
|
|
||||||
|
// Let's shade in our own api
|
||||||
|
shadow(projects.api) { isTransitive = false }
|
||||||
|
|
||||||
// Permissions
|
// Permissions
|
||||||
modImplementation(libs.fabric.permissions)
|
modImplementation(libs.fabric.permissions)
|
||||||
include(libs.fabric.permissions)
|
include(libs.fabric.permissions)
|
||||||
|
|
|
@ -27,8 +27,12 @@ dependencies {
|
||||||
shadow(project(path = ":mod", configuration = "transformProductionNeoForge")) {
|
shadow(project(path = ":mod", configuration = "transformProductionNeoForge")) {
|
||||||
isTransitive = false
|
isTransitive = false
|
||||||
}
|
}
|
||||||
shadow(project(path = ":core")) { isTransitive = false }
|
shadow(projects.core) { isTransitive = false }
|
||||||
|
|
||||||
|
// Let's shade in our own api
|
||||||
|
shadow(projects.api) { isTransitive = false }
|
||||||
|
|
||||||
|
// Include all transitive deps of core via JiJ
|
||||||
includeTransitive(projects.core)
|
includeTransitive(projects.core)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue