Hi,
We are planning to integrate jira with jira subversion plugin.
Can any one please suggest whats the way to send mail notification whenever the user commits from SVN. Is there any way to trigger mail from jira like issue creation,issue closed etc same for issue commit?
Thanks in advance
Regards,
Jai
The Atlassian subversion plugin really does only do the basics. It reads subversion for relevant information, indexes it locally, and then checks the index when a user looks at an issue. It's a passive pull - it issues a simple "what's changed since I last asked you" call to subversion and parses the result.
If you want it to do more, you'll have to code the whole lot into the plugin - if you want to go that way, I'd be looking at the pull-and-index step, where you'll need to persuade it to fire events if you want to use Jira's internal notification schemes.
There's also the Subversion ALM plugin. More features, but not including email on subversion change. I don't know the internals of that at all though, it could be (and probably is) a lot closer to what you need.
Finally, I'd not actually bother with Jira. It's a doddle to write "send email" scripts in bash/python/ruby/your-language-of-choice, and use one of them as a post-commit hook on the subversion repo.
Subversion ALM is closed source. However, it is open in some sense as it provides full access to the whole Subversion indexed data through standard JDBC and fires events to notice other plugins about new commits.
So you can do almost anything like watch modifications under a directory and send email notifications, create new issues or change their status, etc. There are not much limits about you can do as you have full access to JIRA through the Java API, full access to Subversion (by including the Java SVNKit API in yout pom.xml) and Subversion ALM indexed data (by using the Java API). I cannot imagine anything more open and powerful.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you use the Atlassian's plugin, then you have to modify the source code to support it.
If you use the alternative Subversion ALM plugin, things are a bit easier as it fires an event for every Subversion commit that you can capture from your own custom plugin and interact with JIRA accordingly.
You have to code with both plugins, but in my opinion, Subversion ALM is one step forward in this field.
There is available an example for commit event subscription here:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.