Hudson/JIRA integration
Apache Lucene project is now apparently using Hudson for their nightly builds. While looking at how they are doing, I noticed that one of them suggested using Bamboo because of a nicer JIRA and Confluence integration.
So I decided to write a Hudson plugin for JIRA. It's famous enough, so I figured there are probably more Hudson users who'd enjoy such a plugin. JIRA has a SOAP interface, so it was relatively easy to talk to it from Hudson.
First, you need to go to Hudson's system config screen to tell Hudson where's your JIRA. This plugin has an optional feature to update JIRA issues with a back pointer to Hudson build pages. This allows the submitter and watchers to quickly find out which build they need to pick up to get the fix. If you also want to use this feature, you need to supply a valid user id/password.
JIRA also needs to be configured for Hudson to remotely login. Go to the general configuration screen and enable remote API calls. Again, this is only needed if you use the abovementioned optional feature, and if you forget to do so, Hudson will nicely warn you.
With that, JIRA keys in changelogs are now hyperlinked to the corresponding JIRA pages (complete with tooltips!)
To have Hudson update JIRA issues with back pointers to builds, you also need to configure jobs. I figured you might not always have write access to the JIRA (say you have a Hudson build for one of the Apache commons project that you depend on), so that's why this is optional.
And the following screen shows how JIRA issue is updated.
By taking advantages of Hudson's fingerprint feature, when your other projects that depend on this project picks up a build with a fix, those build numbers can be also recorded to JIRA. This is quite handy when a bug is fixed in one of the libraries, yet the submitter wants a fix in a different project. This happens often in my work, where a bug is reported against JAX-WS but the fix is in JAXB.
This plugin can be downloaded from Hudson website, and it works with the latest Hudson 1.86. If you have ideas about how to improve this plugin, plase submit RFEs (or better yet, join us as a developer.)
- Login or register to post comments
- Printer-friendly version
- kohsuke's blog
- 8119 reads






Comments
hudson user comments permission
by agehl - 2010-01-24 17:28
Hi, is there a way to configure projet roles or groups which can see hudson user comments?Issues about group-level already filed
by rodym - 2010-02-09 06:18
This is already covered by two issues: http://issues.hudson-ci.org/browse/HUDSON-1489 and http://issues.hudson-ci.org/browse/HUDSON-2663. I hope they'll fix this, now I get worried customers saying "hudson?".jira comments attributed to svn user
by clintonbosch - 2009-10-12 06:53
When committing code to svn, my commit comments are included on my jira issue, but it is there any way that the comments can be attributed to the actual person who did the commit instead of having one global jira user for all the hudson generated comments.I agree, but to the best of
by kohsuke - 2009-10-12 08:25
I agree, but to the best of my knowledge, this requires that every user surrenders their passwords to Hudson, which is too much of a security hole. For this to work, JIRA needs to let an administrator to impersonate an existing user.