How to create new issue type from plugin?

maki maki February 7, 2014

I am trying to add new issue type from my plugin, but cannot figure it out.

So far I have created Java class and have updated descriptor file to include my new issue type. However, it is not not showing up in Jira instance.

Java class:

import com.atlassian.jira.component.ComponentAccessor;

import com.atlassian.jira.config.IssueTypeManager;

public class CustomIssueType{

public CustomIssueType() {

IssueTypeManager issueTypeManager = ComponentAccessor.getComponentOfType(IssueTypeManager.class);

issueTypeManager.createIssueType("mytype", "custom issue type", null);

// TODO Auto-generated constructor stub

}

}

Descriptor file segment:

<customissuetype-type key="myType" name="My Custom Issue Type" class="CustomFieldsPlugin.CustomIssueType">

<description>My 1st custom issue type</description>

</customissuetype-type>

1 answer

0 votes
Onkar Ahire
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.
February 7, 2014
maki maki February 11, 2014

Thank you Onkar. Yes, I have read that post before posting my question. From that post I have problem importing com.atlassian.jira.util.JiraUtils i. I have uncommented the jira-core in my pom file and clean rebuilt my solution and still same issue. Also, what I do not see in that post do we need to have entry in the discriptor file or having it all in the Java class is enough for the issue type to show in Jira. I would appreciate a lot if you can help me out here.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events