From bd327e37eb083e9e9cc3e610f8d673390881ee9c Mon Sep 17 00:00:00 2001 From: Jonathan Coates Date: Wed, 11 Oct 2023 19:15:36 +0100 Subject: [PATCH] Fix common jar not actually being published Or rather, being published to the wrong place. The java-convention plugin sets the group, but that was applied after the publishing one - I was hoping it'd read that property lazy, but clearly not! --- projects/common/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/common/build.gradle.kts b/projects/common/build.gradle.kts index 69be0f26c..66528450c 100644 --- a/projects/common/build.gradle.kts +++ b/projects/common/build.gradle.kts @@ -7,9 +7,9 @@ import cc.tweaked.gradle.clientClasses import cc.tweaked.gradle.commonClasses plugins { - id("cc-tweaked.publishing") id("cc-tweaked.vanilla") id("cc-tweaked.gametest") + id("cc-tweaked.publishing") } minecraft {