-
-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to add several functionalities into this repo, but want to listen about your opinions first. #182
Comments
I'm not one of the maintainers, just a guy with often annoying opinions, but would an entirely separate tool be more appropriate? The way I see the maven plugin itself is just as a means to generate the BOMs and then any kind of post-processing/usage of those BOMs should be done outside it with other tools (like with Dependency-Track or the CycloneDX-CLI). The biggest boon to doing it that way would be that although there's an extra step in running the checks, you're now doing so in an agnostic way and would get better reuse and support from the rest of the community who might be using Python, .NET, Node, etc. instead. The CLI tool's |
Well I add these functionalities for generating/verify sbom in gitlab runner ci. |
There are three algorithms for merging and implementing each one in all the various tools is a tremendous amount of work. For the time being, the CycloneDX CLI is the only way that implements these merging algorithms. I would also like to implement this logic in CycloneDX Core Java and make it available to the Maven and Gradle plugins in the future. If anyone wants to tackle this, PRs are accepted. |
functionality 1 : enforce same dependency version in repo
Search from components, find all components with same
group
andname
, but differentversion
.If found any then fail. Otherwise succeed.Might have an additional exclude mechanism
functionality 2 : enforce same dependency version as from one input sbom file.
functionality 3 : enforce license of components (blacklist and whitelist)
I see your codes, and seems I can do these codings myself. But I'm not sure:
The text was updated successfully, but these errors were encountered: