It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
I'm trying to develop a plugin for JIRA 7.2.2 that uses com.atlassian.templaterenderer to render views. However, it fails to start with a timeout while attempting to locate this dependency.
This is the log message I'm getting:
[INFO] [talledLocalContainer] The plugin has been disabled. A likely cause is that it timed out during initialisation [INFO] [talledLocalContainer] [INFO] [talledLocalContainer] It has the following missing service dependencies : [INFO] [talledLocalContainer] &templateRenderer of type (&(objectClass=com.atlassian.templaterenderer.TemplateRenderer)(objectClass=com.atlassian.templaterenderer.TemplateRenderer))
My pom.xml has the following dependency present:
<dependency> <groupId>com.atlassian.templaterenderer</groupId> <artifactId>atlassian-template-renderer-api</artifactId> <version>1.3.1</version> </dependency>
This is how I'm attempting to wire the dependency to my Servlet:
@Inject public MyServlet(@ComponentImport UserManager userManager, @ComponentImport LoginUriProvider loginUriProvider, @ComponentImport TemplateRenderer templateRenderer) { this.userManager = userManager; this.loginUriProvider = loginUriProvider; this.templateRenderer = templateRenderer; }
I've also added these jvm args to pom.xml maven-jira-plugin section:
<jvmArgs>-Xms2g -Xmx4g -XX:MaxPermSize=1g -XX:-UseGCOverheadLimit -server -Datlassian.plugins.enable.wait=300</jvmArgs>
So what is wrong with this configuration?
Finally turned out that IDE was configured to use built-in Maven instance instead of the one that comes with Atlassian SDK an this messed up all the dependencies.
This should be written with HUGE red letters in the beginning of every Atlassian tutorial: ONLY use Atlassian Maven and never - any other instance.
This community is celebrating its one-year anniversary and Atlassian co-founder Mike Cannon-Brookes has all the feels.
Read moreAtlas Camp is our developer event which will take place in Barcelona, Spain from the 6th -7th of September . This is a great opportunity to meet other developers and get n...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.