为什么我会得到一个svn:非法的存储库URL'';使用maven'时出错;s发布插件?

为什么我会得到一个svn:非法的存储库URL'';使用maven'时出错;s发布插件?,svn,maven,branch,release,svn-externals,Svn,Maven,Branch,Release,Svn Externals,我在用 mvn release:branch ... 我得到了一个神秘的错误: [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 27.391s [INFO] Finished at: Mon Jan 07 17:22:46 PST 2013 [INFO] Final Memory: 7M/245M [IN

我在用

mvn release:branch ...
我得到了一个神秘的错误:

[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 27.391s
[INFO] Finished at: Mon Jan 07 17:22:46 PST 2013
[INFO] Final Memory: 7M/245M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-release-plugin:2.3.2:branch (default-cli) on project XXX: Unable to commit files
[ERROR] Provider message:
[ERROR] The svn command failed.
[ERROR] Command output:
[ERROR] svn: Commit failed (details follow):
[ERROR] svn: Illegal repository URL ''
[ERROR] -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException

这是什么原因造成的?

这实际上与maven关系不大。maven发布插件更新版本号,然后提交它们。如果其中一个POM位于svn外部,它会尝试在一个修订版中提交本地和外部修改,并给出这个非常隐晦的错误消息。希望这能帮助其他人


不幸的是,我知道解决这个问题的唯一办法就是停止使用externs或停止使用release插件

这实际上与maven关系不大。maven发布插件更新版本号,然后提交它们。如果其中一个POM位于svn外部,它会尝试在一个修订版中提交本地和外部修改,并给出这个非常隐晦的错误消息。希望这能帮助其他人

不幸的是,我知道解决这个问题的唯一办法就是停止使用externs或停止使用release插件