-
-
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
Add a configuration option to skip undeployed artifacts #435
Conversation
This adds a `<skipNotDeployed>` plugin configuration option. If set to `false`, even artifacts that do not have a deploy execution are used to generate the SBOM. Closes CycloneDX#430 Signed-off-by: Piotr P. Karwasz <piotr.github@karwasz.org>
16d9689
to
73b2fd6
Compare
+1 for this, it fixes a ton of our builds that were broken by the implementation of the previous feature |
great job, thank you |
@hboutemy Thanks for this change, If you can provide some updates, when there will be a 2.7.11 release ? |
there are 2 PRs I want to merge before doing the release: I hope we'll get that done soon |
Okay, thank you. |
@ppkarwasz @hboutemy I'm executing mvn with this line: |
Hello! Your problem is probably already resolved. But for anyone who has the same problem: you should run maven with arg |
This adds a
<skipNotDeployed>
plugin configuration option. If set tofalse
, even artifacts that do not have a deploy execution are used to generate the SBOM.Closes #430