Jira plugin fails to start with com.atlassian.templaterenderer

s-v-z January 19, 2017

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? 

2 answers

1 accepted

0 votes
Answer accepted
s-v-z January 25, 2017

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.

1 vote
Volodymyr Krupach
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 19, 2017

atlassian-template-renderer-api dependency should go with scope provided. For atlassian-spring-snanner 1.x you can try to add @Scanned above the serlvet class.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events