Truncando o URL do SCM (git) para envio de tag de liberação automática

Por alguma razão, ao executar o maven release, ele me fornece um URL inválido apenas para a parte de marcação do envio. Para o commit / push do pom.xml, ele funciona bem e vai para a URL apropriada. Ver abaixo:

[INFO] Working directory: /opt/jenkins-home/jobs/Section 4362/workspace/section4362-parent
[INFO] Executing: /bin/sh -c cd "/opt/jenkins-home/jobs/Section 4362/workspace/section4362-parent" && git commit --verbose -F /tmp/maven-scm-217365030.commit '/opt/jenkins-home/jobs/Section 4362/workspace/section4362-services/pom.xml' '/opt/jenkins-home/jobs/Section 4362/workspace/section4362-webapp/pom.xml' '/opt/jenkins-home/jobs/Section 4362/workspace/section4362-static/pom.xml' pom.xml
[INFO] Working directory: /opt/jenkins-home/jobs/Section 4362/workspace/section4362-parent
[INFO] Executing: /bin/sh -c cd "/opt/jenkins-home/jobs/Section 4362/workspace/section4362-parent" && git symbolic-ref HEAD
[INFO] Working directory: /opt/jenkins-home/jobs/Section 4362/workspace/section4362-parent
[INFO] Executing: /bin/sh -c cd "/opt/jenkins-home/jobs/Section 4362/workspace/section4362-parent" && git push ssh://[email protected]/{org}/Section4362.git maven-release-test:maven-release-test
[INFO] Working directory: /opt/jenkins-home/jobs/Section 4362/workspace/section4362-parent
[INFO] Tagging release with the label section4362-parent-0.3...
[INFO] Executing: /bin/sh -c cd "/opt/jenkins-home/jobs/Section 4362/workspace" && git tag -F /tmp/maven-scm-882610155.commit section4362-parent-0.3
[INFO] Working directory: /opt/jenkins-home/jobs/Section 4362/workspace
[INFO] Executing: /bin/sh -c cd "/opt/jenkins-home/jobs/Section 4362/workspace" && git push ssh://[email protected]/{org} section4362-parent-0.3
[INFO] Working directory: /opt/jenkins-home/jobs/Section 4362/workspace

Você pode ver que, para o push após o commit, ele empurra parassh://[email protected]/{org}/Section4362.git ({org} esfregado por mim), enquanto que para o empurrão após a tag, ele vai parassh://[email protected]/{org} - URL deve incluir/Section4362.git no fim. Todos os meus arquivos pom especificam o correto:scm:git:ssh://[email protected]/{org}/Section4362.git

Como o URL seria alterado para o envio de tags e de onde ele seria obtido? O Build obviamente está falhando nessa etapa, dizendo que não é possível conectar-se ao repo.

questionAnswers(2)

yourAnswerToTheQuestion