From 4b9e0799d365e81d57a053f86f7108ef0bf53831 Mon Sep 17 00:00:00 2001 From: Cassian Godsted Date: Thu, 12 Sep 2024 09:53:45 -0400 Subject: [PATCH] Migrate to Forgix --- build.gradle | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/build.gradle b/build.gradle index 243d9b13d..1fc744518 100644 --- a/build.gradle +++ b/build.gradle @@ -2,6 +2,7 @@ plugins { id 'dev.architectury.loom' version '1.6-SNAPSHOT' apply false id 'architectury-plugin' version '3.4-SNAPSHOT' id 'com.github.johnrengelman.shadow' version '8.1.1' apply false + id "io.github.pacifistmc.forgix" version "1.2.9" } architectury { @@ -13,6 +14,11 @@ allprojects { version = rootProject.mod_version } +forgix { + group = "cc.cassian.pyrite" + mergedJarName = "pyrite-${version}.jar" +} + subprojects { apply plugin: 'dev.architectury.loom' apply plugin: 'architectury-plugin' @@ -67,4 +73,6 @@ subprojects { // retrieving dependencies. } } + build.finalizedBy(mergeJars) + assemble.finalizedBy(mergeJars) }