Using custom Jira issue keys with Bitbucket Server
Jira integration
このページの内容
関連コンテンツ
- Assets - Jira & Bitbucket Integration
- Getting help with Jira Service Management
- Setting up Assets - AWS Integration
- Importing AWS data into Assets
- Assets - AWS Integration
- Importing and exporting object schemas
- Installing Assets
- Importing with Integrations
- Setting up Assets - Google Cloud Integration
- 4. Enable and sync your import
Bitbucket Server assumes that Jira Software issue keys are of the default format (that is, two or more uppercase letters ([A-Z][A-Z]+
), followed by a hyphen and the issue number, for example TEST-123). By default, Bitbucket Server will not recognize custom issue key formats.
You can use custom issue key formats with Bitbucket Server, however note that integrations with Jira Software can depend on using the default issue key format in both applications. See Integrating using custom Jira Software issue keys for more details.
Configure Bitbucket Server to recognize custom issue key formats by editing <Bitbucket Server installation directory>/bin/_start-webapp.sh
(on Windows, _start-webapp.bat
).
To override the default issue key format, use the JVM_SUPPORT_RECOMMENDED_ARGS
property, like this:
JVM_SUPPORT_RECOMMENDED_ARGS="-Dintegration.jira.key.pattern=\"(<Some different regex>)\""
You'll need to restart Bitbucket Server.
For example, to use lowercase letters in issue keys, use a regex with the parameter like this:
'-Dintegration.jira.key.pattern=(?<=^|[a-z]-|[\s\p{Punct}&&[^-]])([a-z]{1,10}-\d+)(?![^\W_])'
See also Reindex Jira Software issue keys.
As always, be sure to back up your home directory (and perhaps the database) before performing any manual operation on Bitbucket Server. Consider testing this change on another copy of Bitbucket Server before using it in production.
関連コンテンツ
- Assets - Jira & Bitbucket Integration
- Getting help with Jira Service Management
- Setting up Assets - AWS Integration
- Importing AWS data into Assets
- Assets - AWS Integration
- Importing and exporting object schemas
- Installing Assets
- Importing with Integrations
- Setting up Assets - Google Cloud Integration
- 4. Enable and sync your import