Skip to content

Commit

Permalink
Fix remapping of mods using Archloom to package JIJ dependencies (#193)
Browse files Browse the repository at this point in the history
  • Loading branch information
shartte authored Dec 5, 2024
1 parent d897dee commit 7cdbccd
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions legacytest/forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,6 @@ dependencies {
}
modRuntimeOnly('curse.maven:mekanism-268560:5662583')
modImplementation('curse.maven:applied-energistics-2-223794:5641282')
// This is an example for a mod that does NOT work with FG or MDG since its JiJ dependencies are
// packages into /META-INF/jars while installertools will only remap /META-INF/jarjar/*.jar
// modImplementation('curse.maven:gregtechceu-modern-890405:5641637')
}

neoForge {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public void apply(Project project) {
spec.setCanBeConsumed(false);
spec.setCanBeResolved(true);
spec.setTransitive(false);
spec.getDependencies().add(depFactory.create("net.neoforged.installertools:installertools:2.1.7:fatjar"));
spec.getDependencies().add(depFactory.create("net.neoforged.installertools:installertools:2.1.10:fatjar"));
});

// We use this directory to store intermediate files used during moddev
Expand Down

0 comments on commit 7cdbccd

Please sign in to comment.