SBOMgensbomgen

Creation of SBOM in Maven Project Via The CycloneDX-Maven-Plugin

Introduction

This document illustrates the generation of an SBOM from a maven project utilizing the cyclonedx-maven-plugin.

Requirements

Installation

Open the pom.xml file of your maven project and add the following to the plugins section:

<plugin>
    <groupId>org.cyclonedx</groupId>
    <artifactId>cyclonedx-maven-plugin</artifactId>
    <version>2.9.1</version>
    <executions>
        <execution>
            <phase>package</phase>
            <goals>
                <goal>makeAggregateBom</goal>
            </goals>
        </execution>
    </executions>
    <configuration>
        <projectType>application</projectType>
        <schemaVersion>1.6</schemaVersion>
        <includeBomSerialNumber>true</includeBomSerialNumber>
        <includeCompileScope>true</includeCompileScope>
        <includeProvidedScope>true</includeProvidedScope>
        <includeRuntimeScope>true</includeRuntimeScope>
        <includeSystemScope>true</includeSystemScope>
        <includeTestScope>false</includeTestScope>
        <includeLicenseText>false</includeLicenseText>
        <outputFormat>all</outputFormat>
        <outputName>(output-sbom-name-here)</outputName>
    </configuration>
</plugin>

Usage

Build and create the SBOM with the command:

mvn clean install

The resultant SBOM in both JSON and XML format should be found in the target/ directory.

Notes

Troubleshooting

Environment:

Build Failure:

rm -rf path/to/.m2

(Ubuntu).

Example SBOM

The following section illustrates a CycloneDX JSON and XML SBOMs of the project OneDev codebase, created by the CycloneDX Maven Plugin.

Pretty JSON Display

onedev (json)


    

onedev (xml)


    

References