License Infos for additional packages #8049
-
Hello everyone, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
There's currently no definite way to "artificially inject" dependencies into existing analyzer results. The case is a bit different if you'd not use any package manager at all in your project, then you could either use
Depending on your use-case, it might be easiest to actually write an analyzer plugin that "finds" your additional dependencies. This way they will be added to the usually generated results. How are those additional dependencies declared for the build system if not via a package manager? |
Beta Was this translation helpful? Give feedback.
There's currently no definite way to "artificially inject" dependencies into existing analyzer results.
The case is a bit different if you'd not use any package manager at all in your project, then you could either use
CreateAnalyzerResultFromPackageListCommand
, orSpdxDocumentFile
analyzerto generate analyzer results.
Depending on your use-case, it might be easiest to actually write an analyzer plugin that "finds" your additional dependencies. This way they will be added to the usually generated results.
How are those additional dependencies declared for the build system if not via a package manager?