From 83c62bec2230ec8366d86ea6f625d8a3edbba55a Mon Sep 17 00:00:00 2001 From: Auxilor Date: Tue, 28 Mar 2023 14:53:15 +0100 Subject: [PATCH] Fixed publication --- eco-core/core-plugin/build.gradle.kts | 1 + 1 file changed, 1 insertion(+) diff --git a/eco-core/core-plugin/build.gradle.kts b/eco-core/core-plugin/build.gradle.kts index 27c578a..30a38f4 100644 --- a/eco-core/core-plugin/build.gradle.kts +++ b/eco-core/core-plugin/build.gradle.kts @@ -10,6 +10,7 @@ publishing { publications { register("maven", MavenPublication::class) { from(components["java"]) + artifactId = rootProject.name } } }