O plug-in de liberação do Maven falha: artefatos de origem sendo implantados duas vezes

Estamos usando o plugin maven release no hudson e tentando automatizar o processo de lançamento. O lançamento: preparar funciona bem. Quando tentamos executar o release: perform, ele falha porque tenta fazer upload de um artefato de origem duas vezes no repositório.

Coisas que eu tentei,

remover o perfil que inclui o plug-in maven source do super pom (não funcionou)especificando os objetivos do hudson para release como -P! attach-source release: prepare release: execute. O que eu pensei que excluiria o plugin de origem da execução. (não funcionou).tentei especificar a fase do plugin para alguma fase inexistente no super pom. (Não funcionou)tentei especificar a configuração do plug-in, forReleaseProfile como false. (adivinhem? Não funcionou também)

Ele ainda cospe esse erro.

[INFO] [DEBUG] Using Wagon implementation lightweight from default mapping for protocol http
[INFO] [DEBUG] Using Wagon implementation lightweight from default mapping for protocol http
[INFO] [DEBUG] Checking for pre-existing User-Agent configuration.
[INFO] [DEBUG] Adding User-Agent configuration.
[INFO] [DEBUG] not adding permissions to wagon connection
[INFO] Uploading: http://xx.xx.xx.xx:8081/nexus/content/repositories/releases//com/yyy/xxx/hhh/hhh-hhh/1.9.40/hhh-hhh-1.9.40-sources.jar
[INFO] 57K uploaded  (xxx-xxx-1.9.40-sources.jar)
[INFO] [DEBUG] Using Wagon implementation lightweight from default mapping for protocol http
[INFO] [DEBUG] Using Wagon implementation lightweight from default mapping for protocol http
[INFO] [DEBUG] Checking for pre-existing User-Agent configuration.
[INFO] [DEBUG] Adding User-Agent configuration.
[INFO] [DEBUG] not adding permissions to wagon connection
[INFO] Uploading: http://xx.xxx.xx.xx:8081/nexus/content/repositories/releases//com/xxx/xxxx/xxx/xxx-xxx/1.9.40/xxx-xxx-1.9.40-sources.jar
[INFO] [DEBUG] Using Wagon implementation lightweight from default mapping for protocol http
[INFO] [INFO] ------------------------------------------------------------------------
[INFO] [ERROR] BUILD ERROR
[INFO] [INFO] ------------------------------------------------------------------------
[INFO] [INFO] Error deploying artifact: Authorization failed: Access denied to: http://xx.xxx.xx.xx:8081/nexus/content/repositories/releases/com/xxx/xxx/xxx/xxx-config/1.9.40/xxx-xxx-1.9.40-sources.jar

Qualquer ajuda sobre isso será realmente apreciada.

questionAnswers(9)

yourAnswerToTheQuestion