I'm currently using the maven-changes-plugin to generate a JIRA report for a given fixVersionId, as follows:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
<version>2.9</version>
<configuration>
<fixVersionIds>16355</fixVersionIds>
</configuration>
</plugin>
However, what if instead of specific fixVersionIds, I want to be able to include specific issues? Is there a way to do that? I don't see an option in the usage documentation.
I can use the JQL on the actual Jira site "issueKey=ISSUE-10 OR issueKey=ISSUE=11
" but putting that in the filter attribute doesn't seem to work (I have useJql set to true). Even using a simple one like "resolution=1
" does not work (the example on the documentation site doesn't work, either). I can see in the logs that both those attributes are set correctly but when it makes the API call to JIRA, it just uses the default settings and doesn't use the filter attribute at all:
Payload: {"jql":"project = RESONANCE AND status in (6) AND resolution in (1) ORDER BY priority DESC, created DESC","maxResults":100,"fields":["*all"]}
What could I possibly be missing?
specific JIRA's
? Only a number of JIRA issues? For exampleISSUE-10, ISSUE-11, ISSUE-12
something similar? – khmarbaise