From 1712d64220321a6e61b48f8c59e9ba5dd31bd85f Mon Sep 17 00:00:00 2001 From: Ramanathan Ramu Date: Fri, 17 Oct 2025 12:11:52 -0700 Subject: [PATCH] Fix closeSonatypeStagingRepository --- transportable-udfs-plugin/build.gradle | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/transportable-udfs-plugin/build.gradle b/transportable-udfs-plugin/build.gradle index ee36981d..069afb30 100644 --- a/transportable-udfs-plugin/build.gradle +++ b/transportable-udfs-plugin/build.gradle @@ -120,6 +120,30 @@ publishing { } } } + + named("simplePluginPluginMarkerMaven", MavenPublication) { + pom { + name = "Transport Gradle Plugin (Marker)" + description = "Marker artifact for the 'com.linkedin.transport.plugin' Gradle plugin" + url = "https://github.com/linkedin/transport" + licenses { + license { + name = "BSD 2-CLAUSE LICENSE" + url = "https://github.com/linkedin/transport/blob/master/LICENSE" + distribution = "repo" + } + } + developers { + developer { id = "wmoustafa"; name = "Walaa Eldin Moustafa" } + developer { id = "shardulm94"; name = "Shardul Mahadik" } + } + scm { + connection = "scm:git:https://github.com/linkedin/transport.git" + developerConnection = "scm:git:ssh://git@github.com/linkedin/transport.git" + url = "https://github.com/linkedin/transport" + } + } + } } }