You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The option dependency-track.updateParent fails if you (like us) have set the name parameter on all Maven projects to something human-readable.
The problem is that the project in Dependency-Track is created with artifactId as name, so it fails to find all our projects.
However, by changing the line
in UploadBomMojo it works with our projects as well.
Thing is, Maven inserts artifactId into name if it's not set, which explains why it works in all other cases.
The text was updated successfully, but these errors were encountered:
The option
dependency-track.updateParent
fails if you (like us) have set thename
parameter on all Maven projects to something human-readable.The problem is that the project in Dependency-Track is created with
artifactId
as name, so it fails to find all our projects.However, by changing the line
in UploadBomMojo it works with our projects as well.
Thing is, Maven inserts
artifactId
intoname
if it's not set, which explains why it works in all other cases.The text was updated successfully, but these errors were encountered: