From e597259c8e245c4a2210bdfd773fa53b0063d297 Mon Sep 17 00:00:00 2001 From: Andreas Schildbach Date: Thu, 2 Feb 2023 18:12:49 +0100 Subject: [PATCH] build.gradle: migrate from maven plugin to maven-publish plugin To publish to the local Maven repository, use `gradle publishToMavenLocal` rather than `gradle install`. --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 57e3aeef..f5282a97 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ plugins { id 'java-library' - id 'maven' + id 'maven-publish' } group = 'de.schildbach.pte'