From 440cbebfa4941c75b6fda0ef2abe95feaacd3f6d Mon Sep 17 00:00:00 2001 From: trinsdar <30245301+Trinsdar@users.noreply.github.com> Date: Fri, 25 Oct 2024 21:20:01 -0400 Subject: [PATCH] changed common to fabric loader unimined setup also disabled forge and fabric modules till common compiles --- common/build.gradle | 6 +++--- settings.gradle | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/common/build.gradle b/common/build.gradle index 0569761ab..3150d6b30 100644 --- a/common/build.gradle +++ b/common/build.gradle @@ -13,7 +13,8 @@ configurations { unimined.minecraft { version minecraft_version - accessWidener { + fabric { + loader(project.fabric_loader_version) accessWidener(file("src/main/resources/antimatter.accesswidener")) } @@ -50,10 +51,9 @@ repositories { maven { url "https://maven.bai.lol" } } -apply from: 'https://raw.githubusercontent.com/GregTech-Intergalactical/GradleSripts/main/common.gradle' +//apply from: 'https://raw.githubusercontent.com/GregTech-Intergalactical/GradleSripts/main/common.gradle' dependencies{ implementation(expectPlatform.annotationsDep) - modImplementation "net.fabricmc:fabric-loader:${rootProject.fabric_loader_version}" compileOnly("com.blamejared.crafttweaker:CraftTweaker-common-1.18.2:${rootProject.crafttweaker_version}") modCompileOnly("dev.latvian.mods:kubejs-fabric:${rootProject.kubejs_version}") implementation(project(path: ":tesseract-common")) diff --git a/settings.gradle b/settings.gradle index 612116347..ab3b37ee7 100644 --- a/settings.gradle +++ b/settings.gradle @@ -33,9 +33,9 @@ include 'tesseract-fabric' project(':tesseract-fabric').setProjectDir(new File("TesseractAPI/fabric")) include("antimatter-common") -include("antimatter-fabric") -include("antimatter-forge") +//include("antimatter-fabric") +//include("antimatter-forge") project(':antimatter-common').setProjectDir(new File("common")) -project(':antimatter-forge').setProjectDir(new File("forge")) -project(':antimatter-fabric').setProjectDir(new File("fabric")) \ No newline at end of file +//project(':antimatter-forge').setProjectDir(new File("forge")) +//project(':antimatter-fabric').setProjectDir(new File("fabric")) \ No newline at end of file