mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 16:33:21 +01:00
* add new cyclonedx format object Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * remove cyclonedx presenter Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * remove cyclonedx presenter call Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * remove dependence on golden images for format tests Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * wire up new formt + rename all-presenters ref Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * add CLI test to ensure that all formats can be expressed as report output Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * add cyclonedx version and encoding format to package name Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * optionally preserve format snapshot images Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * fix linting + text unit tests Signed-off-by: Alex Goodman <alex.goodman@anchore.com>
35 lines
905 B
XML
35 lines
905 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<bom xmlns="http://cyclonedx.org/schema/bom/1.2" version="1" serialNumber="urn:uuid:5404937f-72d6-44a2-8e9b-954305ecb4f6">
|
|
<metadata>
|
|
<timestamp>2021-06-23T13:40:33-04:00</timestamp>
|
|
<tools>
|
|
<tool>
|
|
<vendor>anchore</vendor>
|
|
<name>syft</name>
|
|
<version>[not provided]</version>
|
|
</tool>
|
|
</tools>
|
|
<component type="file">
|
|
<name>/some/path</name>
|
|
<version></version>
|
|
</component>
|
|
</metadata>
|
|
<components>
|
|
<component type="library">
|
|
<name>package-1</name>
|
|
<version>1.0.1</version>
|
|
<licenses>
|
|
<license>
|
|
<name>MIT</name>
|
|
</license>
|
|
</licenses>
|
|
<purl>a-purl-2</purl>
|
|
</component>
|
|
<component type="library">
|
|
<name>package-2</name>
|
|
<version>2.0.1</version>
|
|
<purl>a-purl-2</purl>
|
|
</component>
|
|
</components>
|
|
</bom>
|