From 61e921c86f97cb3c10aba8f4565d92bd19989735 Mon Sep 17 00:00:00 2001 From: pavl_g <60224159+Scrappers-glitch@users.noreply.github.com> Date: Sat, 26 Aug 2023 12:31:39 +0300 Subject: [PATCH] sonatype-publish-artifacts.sh: added a concatenate command to check the generated pomfile --- .../project-impl/publishing/sonatype-publish-artifacts.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/helper-scripts/project-impl/publishing/sonatype-publish-artifacts.sh b/helper-scripts/project-impl/publishing/sonatype-publish-artifacts.sh index 046048b..3b15c31 100755 --- a/helper-scripts/project-impl/publishing/sonatype-publish-artifacts.sh +++ b/helper-scripts/project-impl/publishing/sonatype-publish-artifacts.sh @@ -11,6 +11,7 @@ sources_jar="${build_dir}/${desktop_artifactId_release}-${version}-sources.jar" javadoc_jar="${build_dir}/${desktop_artifactId_release}-${version}-javadoc.jar" generateGenericPom ${groupId} ${desktop_artifactId_release} ${version} "${desktop_pomFile}" +cat "${desktop_pomFile}" # publish 'android' and 'desktop' builds to maven sonatype -publishBuild "${desktop_artifactId_release}" "${desktop_artifact}" "${version}" "${javadoc_jar}" "${sources_jar}" "${desktop_pomFile}" \ No newline at end of file +publishBuild "${desktop_artifactId_release}" "${desktop_artifact}" "${version}" "${javadoc_jar}" "${sources_jar}" "${desktop_pomFile}"