From 3fd4c92822592010876e77ae941b3d1d985a4474 Mon Sep 17 00:00:00 2001 From: Tschipp <11649893+Tschipp@users.noreply.github.com> Date: Wed, 10 Jul 2024 21:31:01 +0200 Subject: [PATCH] fixed build --- Forge/build.gradle | 4 ++-- NeoForge/build.gradle | 3 +++ settings.gradle | 3 ++- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Forge/build.gradle b/Forge/build.gradle index c25d8a4..ba537a9 100644 --- a/Forge/build.gradle +++ b/Forge/build.gradle @@ -102,8 +102,8 @@ repositories { dependencies { minecraft "net.minecraftforge:forge:${minecraft_version}-${forge_version}" compileOnly project(":Common") - compileOnly(annotationProcessor("io.github.llamalad7:mixinextras-common:${mixinextras_version}")) - runtimeOnly(annotationProcessor("io.github.llamalad7:mixinextras-forge:${mixinextras_version}")) + implementation(annotationProcessor("io.github.llamalad7:mixinextras-common:${mixinextras_version}")) + implementation(annotationProcessor("io.github.llamalad7:mixinextras-forge:${mixinextras_version}")) jarJar(group: 'io.github.llamalad7', name: 'mixinextras-forge', version: "[${mixinextras_version},)") //implementation fg.deobf("net.darkhax.gamestages:GameStages-Forge-1.19.2:11.0.2") diff --git a/NeoForge/build.gradle b/NeoForge/build.gradle index 209881b..60556b1 100644 --- a/NeoForge/build.gradle +++ b/NeoForge/build.gradle @@ -64,6 +64,9 @@ runs { sourceSets.main.resources.srcDir 'src/generated/resources' +tasks.named("test").configure { + enabled = false +} dependencies { implementation "net.neoforged:neoforge:${neoforge_version}" diff --git a/settings.gradle b/settings.gradle index 5fee9c3..8585297 100644 --- a/settings.gradle +++ b/settings.gradle @@ -46,4 +46,5 @@ plugins { } rootProject.name = 'CarryOn' -include("Common", "Fabric", "Forge", "NeoForge") \ No newline at end of file +include("Common", "Fabric", "NeoForge") +//include("Common", "Fabric", "Forge", "NeoForge") \ No newline at end of file