Is your feature request related to a problem? Please describe.
With dependency-check-maven version 9.x the reference name in the reports is not pulling from the tags instead of the refspec which was available in the nvd definitions in json format. However looking at the code it seems that the logic only picks the first item in a sorted list as seen here, which means that a reference which may have more than one tag only shows one in the dependency check report. Honestly not sure whether this is a feature request or a bug but since it's only been introduced in v9 quite recently maybe it can be amended slightly without too much effort.
Describe the solution you'd like
While having the report show a list of all tags in a tags field would be ideal in my opinion, perhaps a quick simple solution here would be to list them all in a comma separated format in the name field. programmatically one can easily split by comma and get all tags for that reference. I made the necessary code change here and can open a PR if this is to your satisfaction.
Additional context
One needs to keep in mind that with my suggestion, the DB needs to be rebuilt since anything already added will keep it's current format/value. Also while I don't mind the formatting in json or xml files, I'm not really fond of how it looks in html reports, so maybe some formatting on the html report is needed, maybe on a template level:
JSON Report:

HTML Report:

Is your feature request related to a problem? Please describe.
With dependency-check-maven version 9.x the reference name in the reports is not pulling from the tags instead of the refspec which was available in the nvd definitions in json format. However looking at the code it seems that the logic only picks the first item in a sorted list as seen here, which means that a reference which may have more than one tag only shows one in the dependency check report. Honestly not sure whether this is a feature request or a bug but since it's only been introduced in v9 quite recently maybe it can be amended slightly without too much effort.
Describe the solution you'd like
While having the report show a list of all tags in a tags field would be ideal in my opinion, perhaps a quick simple solution here would be to list them all in a comma separated format in the name field. programmatically one can easily split by comma and get all tags for that reference. I made the necessary code change here and can open a PR if this is to your satisfaction.
Additional context
One needs to keep in mind that with my suggestion, the DB needs to be rebuilt since anything already added will keep it's current format/value. Also while I don't mind the formatting in json or xml files, I'm not really fond of how it looks in html reports, so maybe some formatting on the html report is needed, maybe on a template level:
JSON Report:

HTML Report:
