We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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 suggest integrating the org.cyclonedx Maven Plugin into Apache Hop to facilitate the generation of Software Bill of Materials (SBOM) files.
It would be highly beneficial if the generated SBOM file could be included in every release package.
<plugin> <groupId>org.cyclonedx</groupId> <artifactId>cyclonedx-maven-plugin</artifactId> <version>2.8.1</version> <configuration> <projectType>library</projectType> <schemaVersion>1.5</schemaVersion> <includeBomSerialNumber>true</includeBomSerialNumber> <includeCompileScope>true</includeCompileScope> <includeProvidedScope>true</includeProvidedScope> <includeRuntimeScope>true</includeRuntimeScope> <includeSystemScope>true</includeSystemScope> <includeTestScope>false</includeTestScope> <includeLicenseText>false</includeLicenseText> <outputReactorProjects>true</outputReactorProjects> <outputFormat>json</outputFormat> <outputName>bom</outputName> <outputDirectory>${project.build.directory}</outputDirectory> <verbose>false</verbose> </configuration> <executions> <execution> <goals> <goal>makeAggregateBom</goal> </goals> <phase>package</phase> </execution> </executions> </plugin>
Priority: 2
Component: Other
The text was updated successfully, but these errors were encountered:
Great idea! .take-issue
Sorry, something went wrong.
Add Cyclonedx SBOM during release, apache#4235
55eace1
Added the cyclonedx maven plugin to generate SBOM files.
Placed the plugin into a profile that will only be executed during our release process. The SBOM generation does take quite some additional CPU time.
Merge pull request #4244 from hansva/4235
3b305e9
Add Cyclonedx SBOM during release, #4235
hansva
No branches or pull requests
What would you like to happen?
I suggest integrating the org.cyclonedx Maven Plugin into Apache Hop to facilitate the generation of Software Bill of Materials (SBOM) files.
It would be highly beneficial if the generated SBOM file could be included in every release package.
Issue Priority
Priority: 2
Issue Component
Component: Other
The text was updated successfully, but these errors were encountered: