diff --git a/fabric/build.gradle b/fabric/build.gradle index c1878e6..8ab9463 100644 --- a/fabric/build.gradle +++ b/fabric/build.gradle @@ -15,6 +15,8 @@ configurations { developmentFabric.extendsFrom common } +project.archivesBaseName = rootProject.archivesBaseName + "-fabric" + dependencies { modImplementation "net.fabricmc:fabric-loader:${rootProject.fabric_loader_version}" modApi "net.fabricmc.fabric-api:fabric-api:${rootProject.fabric_api_version}" diff --git a/forge/build.gradle b/forge/build.gradle index 4958841..28d3c67 100644 --- a/forge/build.gradle +++ b/forge/build.gradle @@ -13,6 +13,8 @@ loom { } } +project.archivesBaseName = rootProject.archivesBaseName + "-forge" + configurations { common shadowCommon // Don't use shadow from the shadow plugin because we don't want IDEA to index this.