发布插件的 Maven Subversion scm 配置
我正在尝试使用 $HOME/.scm/svn-settings.xml
来哄骗 Maven 使用 --trust-server-cert
选项调用 svn 来绕过一些 self - 签名的服务器证书。当根据 http 调用 mvn scm:update
时,Maven 似乎传递了正确的选项://maven.apache.org/scm/subversion.html,但在调用 mvn release:prepare
时不会。大概配置文件只配置 scm 插件 - 那么我如何让发布插件通过信任服务器证书选项?
I am attempting to use $HOME/.scm/svn-settings.xml
to coax Maven into invoking svn with the --trust-server-cert
option to bypass some self-signed server certs. Maven appears to pass along the correct option when invoking mvn scm:update
per http://maven.apache.org/scm/subversion.html, but not when invoking mvn release:prepare
. Presumably the config file only configures the scm plugin - so how do I get the release plugin to pass the trust server cert option?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事实证明,发布插件在 2.2 版本之前不支持 scm 配置 - 指定发布插件版本明确修复了问题。
Turns out the release plugin doesn't support the scm config until version 2.2 - specifying the release plugin version explicitly fixed the problem.