Skip to content

Commit

Permalink
Fix bad included jars
Browse files Browse the repository at this point in the history
  • Loading branch information
lukebemish committed Apr 25, 2024
1 parent 5f3ef32 commit 3fc7876
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,9 @@ loom {
useLegacyMixinAp = false
}
}

// TODO: loom is funky here...
import net.fabricmc.loom.task.RemapJarTask
tasks.withType(RemapJarTask).each {
it.addNestedDependencies.set false
}
6 changes: 6 additions & 0 deletions neoforge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,9 @@ loom {
property 'dynamicassetgenerator.time_resources', 'true'
}
}

// TODO: loom is funky here...
import net.fabricmc.loom.task.RemapJarTask
tasks.withType(RemapJarTask).each {
it.addNestedDependencies.set false
}

0 comments on commit 3fc7876

Please sign in to comment.