Hudson 中的 Jira 链接丢失
我正在尝试将 Hudson CI 与 Jira 集成。我正在使用 Hudson 2.1.0 和 Jira 4.3.614。我已经根据页面 http://wiki.hudson-ci 设置了 Hudson。 org/display/HUDSON/JIRA+Plugin. Jira 将接受远程 API 调用选项设置为“打开”。 Hudson 已配置正确的 URL,选中支持 Wiki Notation 和记录 Scm 更改选项,问题模式设置为 AB-([0-9])+ ,用户名和密码也设置为有效的 Jira 用户。在我的 Hudson 作业配置中,我标记了更新相关 JIRA 问题选项。问题是,每当 svn 签入并在 hudson 的更改日志中触发构建时,我只能看到如下文本:“2233. AB-353 开发数据库中待处理订单中的数据问题”,但是 AB-353 是普通文本,不是 Jira 的链接。有人知道为什么我没有 Jira 问题的正确链接吗?我是否缺少一些 Jira 或 Hudson 配置设置?也许缺少一些协议或插件?
谢谢,
罗马
I'm trying to integrate Hudson CI with Jira. I'm using Hudson 2.1.0 and Jira 4.3.614. I've set up Hudson according to page http://wiki.hudson-ci.org/display/HUDSON/JIRA+Plugin. Jira has Accept remote API calls option set to ON. Hudson has proper URL configured, Supports Wiki Notation and Record Scm changes options are checked on, issue pattern is set to AB-([0-9])+, user name and passwords are also set to valid Jira user. In my hudson's job configuration I've got option Update relevant JIRA issues marked. Problem is that whenever there is svn check-in and build is triggered in hudson's change log I can see only text like: "2233. AB-353 Data issue in Orders Pending in Dev Database", but AB-353 is normal text, not link to Jira. Anybody has any idea why I don't have proper links for Jira issues? Am I missing some Jira or Hudson configuration setting? Maybe some protocol or plugin missing?
Thanks,
Roman
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题出在我的正则表达式上。我把它写成:
AB-([0-9])+,
而 Jira 的插件期望这样的东西:
(AB-[0-9]+),
整个表达式用括号括起来。
Problem was with my regular expression. I had it as:
AB-([0-9])+
while Jira's plugin expected something like this:
(AB-[0-9]+)
with brackets around the whole expression.