Skip to content

Commit

Permalink
chore: merge upstream for lwjgl library fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gabizou committed Sep 22, 2024
2 parents 7dd13c8 + c233dac commit 3de731c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion vanilla/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,13 @@ dependencies {

// All minecraft deps except itself
configurations.minecraft.get().resolvedConfiguration.resolvedArtifacts
.map { it.id.componentIdentifier.toString() }
.map {
var id = it.id.componentIdentifier.toString()
if (it.classifier != null) {
id += ":" + it.classifier
}
id
}
.filter { !it.startsWith("net.minecraft:joined") }
.forEach { boot(it) { isTransitive = false } }

Expand Down

0 comments on commit 3de731c

Please sign in to comment.