Import multiple project components at once

Mario Prada Arroyo April 29, 2013

Hello,

As far I know, is posible to import multiple project components with a JSON file in JIRA (and that is great!!! I have to add 130 components!!) but I also need to set the Default Asignee to Component Lead, and I can t find the tag for do this.

I m using Jira 5.2.4.1. Is posible to do this in my version or in a later one?

Thanks in advance.

4 answers

1 accepted

1 vote
Answer accepted
Mario Prada Arroyo May 2, 2013

Hi all!!

Finally, I decided to use a small java application to read the information from a file, and use Jira API to create the components.

If it helps, this is the basic part of the code:

File file = new File(".\\components.txt");
		List<String> contents;
		try {
			contents = FileUtils.readLines(file);
			for (String line : contents) {
				String[] lines = line.split("#");
				final ComponentInput componentInput = new ComponentInput(lines[0],lines[0], lines[1],AssigneeType.COMPONENT_LEAD);
				final Component component = restClient.getComponentClient().createComponent("PROJECTID", componentInput, pm);
		} catch (IOException e) {
			e.printStackTrace();
		}

0 votes
Mario Prada Arroyo April 29, 2013

Timothy, I m using de JSON Beta importer.

0 votes
Ramiro Pointis
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.
April 29, 2013

As I can see in this documentation, when you add components you can only specify the name:

https://confluence.atlassian.com/pages/viewpage.action?pageId=314449019

It looks like you can import it but then edit with the UI every component, at least for now with the beta release.

Mario Prada Arroyo April 29, 2013

Ramiro, I had seen that documentation, but it s incomplete. It doesn t specify anything about component fields (or I couldn t find it) but I could specify description an Component Lead of a component with a JSON like this:

{
    "projects": [
   {
			"key": "KEY",   
            "components": [
				{"name":"component","description":"component description","lead":"leaduser"}

            ]
        }
    ]
}

Ramiro Pointis
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.
April 29, 2013

Nice to know that. And just in case have you tried using 'default' as tag?

Mario Prada Arroyo May 2, 2013

No luck :-(

I've tried also 'assigneeType'.

I'm afraid that's not possible. It's a shame, because I'll have to do by hand one by one ...

0 votes
Timothy
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.
April 29, 2013

And what way are you using to import/create in JIRA? REST?

Suggest an answer

Log in or Sign up to answer