Hi all. I'm trying to create Crucible plugin which sends POSTs when review state changes. I've found this tutorial, but com.atlassian.event.EventListener is marked deprecated in Eclipse and my plugin could not be enabled.
So are there any actual tutorials on creating such plugins?
Hello, yes indeed the referenced tutorial is out of date. You should use **com.atlassian.event.api.EventListener** annotation on a method level.
Please make sure you register your bean to an **EventPublisher** instance. **Do not** to deregister it while bean is destroyed, you'll introduce memory leaks otherwise!
You can base on a JIRA tutorial. Although components being used will differ from the ones avaliable in FishEye&Crucible (like IssueEvent), the same concept of event listener is used.
Reference: https://bitbucket.org/atlassian_tutorial/jira-event-listener/src/15c9fbb4172d0d7954b176cea052d23848c6eaef/src/main/java/com/example/tutorial/plugins/IssueCreatedResolvedListener.java?at=master&fileviewer=file-view-default
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.