Hi,
I'm trying to create new project tab panel (replace the JIRA original existing one with my own) in our plugin, and I need some of the original funcionality in the new one (i.e.: some of the fragments, fragment menus). The problem is that while the class injection works fine for the original JIRA tab (classes for some of the classes) the classes don't get initialized for the plugin. I don't want to implement these fragments for my plugin as I need changes on a whole tab panel and no changes on fragments. I get this exception
org.springframework.beans.factory.NoSuchBeanDefinitionException
when I put this class as parameter to constructor. Is there some simple way to make my plugin inject JIRA classes? If so what are the steps I should do?
Thank you in advance for any help.
So the problem is solved. I did a little error when trying to import these components. As more components can have one interface it is necessary to do it with the component object itself not through it's interface. As for atlassian's own classes it is only necessary to use "component" module, i.e.:
<component key="dueIssuesFragment" name="Due Issues Fragment" class="com.atlassian.jira.plugin.projectpanel.fragment.impl.DueIssuesFragment"> <decription>Due Issues Fragment</decription> </component>
This however does not work for ALL the JIRA fragments (classes). If anyone knows why, let us know so that we can expand our knowledge.
Are you using component-import in your atlassian-plugin.xml ?
https://developer.atlassian.com/display/JIRADEV/Component+Import+Plugin+Module
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.