From 94af2492511b3d28852d68e4fc4f100d5ecbf445 Mon Sep 17 00:00:00 2001 From: david-leifker <114954101+david-leifker@users.noreply.github.com> Date: Thu, 23 May 2024 07:32:22 -0500 Subject: [PATCH] build(jar): enable custom plugin lib (#10552) --- metadata-integration/java/custom-plugin-lib/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/metadata-integration/java/custom-plugin-lib/build.gradle b/metadata-integration/java/custom-plugin-lib/build.gradle index 9fbe1066706be..08bbe587b49c0 100644 --- a/metadata-integration/java/custom-plugin-lib/build.gradle +++ b/metadata-integration/java/custom-plugin-lib/build.gradle @@ -86,7 +86,7 @@ publishing { } repositories { -/* maven { + maven { def releasesRepoUrl = "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/" def snapshotsRepoUrl = "https://s01.oss.sonatype.org/content/repositories/snapshots/" def ossrhUsername = System.getenv('RELEASE_USERNAME') @@ -96,7 +96,7 @@ publishing { password ossrhPassword } url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl - }*/ + } } }