Issues Management

Overview

The pom-root provides the reference to the issue management server.

<issueManagement>
  <system>Bugzilla</system>
  <url>${issues-url}</url>
  <!-- /buglist.cgi?query_format=specific&amp;order=relevance+desc&amp;product=${project.artifactId} -->
</issueManagement>

Originally (as you can see by the comment) we pointed to the most appropriate page in on our issue management server. Unfortunately this is no longer possible since plugins construct their URLs and expect this property to point to the root context on the server.

Variables

The following variables control the documentation of issues.

issues-url

The reference to the issue management server. Note that there is no dot in the variable name since we want to use the URL to reference bugs from the site documentation.

issues-product

Link to a specific product on the issue management server. This value is used to filter bugs. Per default this is the artifact identifier but may be set to any value.

issues-component

Link to a specific component within the product on the issue management server. This value is used to filter bugs. Per default this is empty with the effect to not filter on the component (i.e. all components of the selected product are taken into account).