-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjira_configuration_example.txt
84 lines (84 loc) · 1.73 KB
/
jira_configuration_example.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"config.version" : "2.0",
"config.project.from.csv" : "false",
"config.encoding" : "UTF-8",
"config.email.suffix" : "@example.com",
"config.field.mappings" : {
"Status" : {
"jira.field" : "status"
},
"Assignee" : {
"jira.field" : "assignee"
},
"Category" : {
"jira.field" : "components"
},
"Description" : {
"jira.field" : "description"
},
"Issue type" : {
"jira.field" : "issuetype"
},
"OS" : {
"jira.field" : "versions"
},
"Priority" : {
"jira.field" : "priority"
},
"Comments" : {
"jira.field" : "comment"
},
"Reporter" : {
"jira.field" : "reporter"
},
"Label" : {
"jira.field" : "labels"
},
"Attachment" : {
"jira.field" : "attachment"
},
"Date Modified" : {
"jira.field" : "updated"
},
"Summary" : {
"jira.field" : "summary"
},
"Issue Id" : {
"jira.field" : "issue-id"
},
"Date Created" : {
"jira.field" : "created"
},
"Resolution" : {
"jira.field" : "resolution"
}
},
"config.value.mappings" : {
"Status" : {
"Closed" : "10001",
"In_progress" : "3",
"Open" : "10000"
},
"Issue type" : {
"BUG" : "10005"
},
"Resolution" : {
"DUPLICATE" : "10002",
"WORKSFORME" : "10102",
"WONTFIX" : "10001",
"FIXED" : "10000",
"INVALID" : "10100",
"SOFTWARE" : "10104"
}
},
"config.delimiter" : ",",
"config.project" : {
"project.type" : null,
"project.key" : "HW",
"project.description" : null,
"project.url" : null,
"project.name" : "Project Name",
"project.lead" : null
},
"config.date.format" : "dd/MM/yy HH:mm:ss"
}