forked from BBVA/mirrorgate-jira-stories-collector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
application.properties
61 lines (46 loc) · 1.72 KB
/
application.properties
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
##########################
##Custom fields section
## Note yu can retrieve your instance's IssueType Name
## listings via the following URI: https://[your-jira-domain-name]/rest/api/2/issuetype/
##########################
#Custom field containing the story points
jira.fields.storyPoints=customfield_10002
#Custom field for the sprint
jira.fields.sprint=customfield_10008
#Custom fields to be accumulated in the keyworkds. You can specify as much as you want and use them to filter in the boards.
jira.fields.keywordList=customfield_10245,customfield_10271
#Custom field for the product increment
jira.fields.pi=customfield_10264
##########################
## If you Jira instance is running in a timezone different than the collector
## you will need to set this to the Jira timezone
##########################
# jira.timezone=Europe/Madrid
##########################
## Months of history to load from Jira on the first execution
##########################
jira.monthsOfHistory=12
##########################
## Conectivity
##########################
jira.url=
jira.userName=
jira.password=
mirrorgate.url=http\://localhost:8080/mirrorgate
##########################
## Change this if you want to collect several jira instances.
##########################
spring.application.name=mirrorgate-collectors-jira
######################
#Chron schedule: S M D M Y [Day of the Week]
scheduler.cron=0 */15 * * * *
######################
#Uncomment to avoid starting the webhook interface
#spring.main.web-environment=false
######################
#Jira type Mappings. Supports comma separated values
jira.types.mappings.bug=Bug
jira.types.mappings.story=Story
jira.types.mappings.feature=Feature
jira.types.mappings.epic=Epic
jira.types.mappings.task=Task