From a529e919170600ab798d8a5fb8f5daf2af7e942c Mon Sep 17 00:00:00 2001 From: jamesdooley4 <56771024+jamesdooley4@users.noreply.github.com> Date: Mon, 15 Feb 2021 23:19:50 -0800 Subject: [PATCH] Fix maven publish (#31) * Add explicit maven artifactId with lowercase name of package: "2412robotlibrary" in order to fix publish failure --- build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle b/build.gradle index c94b115..eb0a305 100644 --- a/build.gradle +++ b/build.gradle @@ -94,6 +94,7 @@ publishing { publications { gpr(MavenPublication) { from(components.java) + artifactId = "2412robotlibrary" } } }