From 3d8735196f32c44bd260c236642befafda1feb8e Mon Sep 17 00:00:00 2001 From: "James (Jamalam)" Date: Sun, 17 Mar 2024 14:44:21 +0000 Subject: [PATCH] chore(build): make publish depend on clean this is necessary because of the elusive Jankson build error which clean fixes --- build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle b/build.gradle index 18a8d23..c299e72 100644 --- a/build.gradle +++ b/build.gradle @@ -83,6 +83,7 @@ allprojects { } tasks.publish { + dependsOn("clean") dependsOn(":githubRelease") dependsOn("common:publishAllPublicationsToMavenRepository") dependsOn("fabric:publishUnified")