By default, Jira is started with the following value for the stash.jira.key.pattern argument:
((?<!([A-Z]{1,10})-?)[A-Z]+-\d+)
To ignore case, I was thinking of changing this to:
\b(\p{Alpha}+-\p{Digit}+)\b
Here I have omitted the negative lookbehind term:
([A-Z]{1,10})-?)
I know I could just include it or modify it in a simlar way:
((?<!(\p{Alpha}{1,10})-?)\p{Alpha}+-\p{Digit}+)
But what am I losing by not including it?