mirror of
https://github.com/architectury/architectury-loom.git
synced 2026-03-28 04:07:01 -05:00
migrate RemapJarTask and RemapSourcesJarTask over to getters/setters for fields; make RemapJarTask use input and output locations instead of in-place renaming fluff
This commit is contained in:
@@ -64,7 +64,7 @@ public class LoomGradlePlugin extends AbstractPlugin {
|
||||
t.getOutputs().upToDateWhen((o) -> false);
|
||||
});
|
||||
|
||||
tasks.register("remapJar", RemapJar.class);
|
||||
tasks.register("remapJar", RemapJarTask.class);
|
||||
|
||||
tasks.register("genSourcesDecompile", FernFlowerTask.class, t -> {
|
||||
t.getOutputs().upToDateWhen((o) -> false);
|
||||
@@ -136,7 +136,7 @@ public class LoomGradlePlugin extends AbstractPlugin {
|
||||
t.setGroup("ide");
|
||||
});
|
||||
|
||||
tasks.register("remapSourcesJar", RemapSourcesJar.class);
|
||||
tasks.register("remapSourcesJar", RemapSourcesJarTask.class);
|
||||
|
||||
tasks.register("runClient", RunClientTask.class, t -> {
|
||||
t.dependsOn("buildNeeded", "downloadAssets");
|
||||
|
||||
Reference in New Issue
Block a user