Vulnerability reference ΒΆ
Known limitations and alternatives ΒΆ
Due to Trivy, you'll receive a simplified dependency graph, as Trivy doesn't support Gradle or Maven's dependency resolution.
Dependency-track integrates with Trivy at runtime, ensuring that vulnerabilities from the Docker container are still detected.
Trivy directly parses the .jar files without access to full dependency resolution details.
Gradle and Maven plugins provide a deeper graph of nested transitive dependencies.
Gradle Plugin ΒΆ
Gradle Plugin
Add the following plugin to your build.gradle* file.
id("org.cyclonedx.bom") version "1.x.x"In your workflow you can generate a SBOM with the following gradle task command:
- name: Generate and output SBOM
run: ./gradlew cyclonedxBomThe SBOM will be default located at build/reports/bom.json. Pass the SBOM to the nais/docker-build-push action with the following input:
uses: nais/docker-build-push@v0 # Should be pinned1
with:
byosbom: build/reports/bom.jsonFor nais/attest-sign action:
uses: nais/attest-sign@v1 # Should be pinned
with:
sbom: build/reports/bom.jsonFor more info about settings check out the CycloneDx Gradle Plugin
Maven Plugin ΒΆ
Maven Plugin
Add the following to your pom.xml file.
<plugins>
<plugin>
<groupId>org.cyclonedx</groupId>
<artifactId>cyclonedx-maven-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>makeAggregateBom</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>In your workflow you can generate a SBOM with the following maven command:
- name: Generate and output SBOM
run: ./mvnw packageThe SBOM will be default located at target/bom.json. Pass the SBOM to the nais/docker-build-push action with the following input:
uses: nais/docker-build-push@v0 # Should be pinned1
with:
byosbom: target/bom.jsonFor nais/attest-sign action:
uses: nais/attest-sign@v1 # Should be pinned
with:
sbom: target/bom.jsonFor more info about settings check out the CycloneDx Maven Plugin