-
-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Alex Alzate <[email protected]>
- Loading branch information
Showing
5 changed files
with
196 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
{ | ||
"bomFormat": "CycloneDX", | ||
"specVersion": "1.5", | ||
"serialNumber": "urn:uuid:1624fa6f-aebe-4dba-8ead-f2c876c9b832", | ||
"version": 1, | ||
"metadata": { | ||
"licenses": [ | ||
{ | ||
"id": "MIT" | ||
}, | ||
{ | ||
"name": "MIT" | ||
} | ||
] | ||
}, | ||
"components": [ | ||
{ | ||
"type": "library", | ||
"name": "test", | ||
"licenses": [ | ||
{ | ||
"id": "MIT", | ||
"bom-ref": "test-1" | ||
}, | ||
{ | ||
"name": "MIT WITH Libtool-exception" | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "library", | ||
"name": "test", | ||
"licenses": [ | ||
{ | ||
"expression": "CC0-1.0", | ||
"bom-ref": "test" | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "library", | ||
"name": "test-1", | ||
"evidence": { | ||
"licenses": [ | ||
{ | ||
"id": "Apache-2.0", | ||
"url": "http://www.apache.org/licenses/LICENSE-2.0" | ||
}, | ||
{ | ||
"id": "LGPL-2.1-only", | ||
"url": "https://opensource.org/licenses/LGPL-2.1" | ||
} | ||
] | ||
} | ||
} | ||
], | ||
"services": [ | ||
{ | ||
"name": "Stock ticker service", | ||
"licenses": [ | ||
{ | ||
"name": "Partner license" | ||
}, | ||
{ | ||
"name": "test" | ||
} | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<bom serialNumber="urn:uuid:7fec5e81-b204-4eec-a0d6-383dc39c4867" version="1" xmlns="http://cyclonedx.org/schema/bom/1.5"> | ||
<metadata> | ||
<licenses> | ||
<license> | ||
<id>MIT</id> | ||
</license> | ||
<license> | ||
<name>MIT</name> | ||
</license> | ||
</licenses> | ||
</metadata> | ||
<components> | ||
<component type="library"> | ||
<name>test</name> | ||
<licenses> | ||
<license bom-ref="test-1"> | ||
<id>MIT</id> | ||
</license> | ||
<license> | ||
<name>MIT WITH Libtool-exception</name> | ||
</license> | ||
</licenses> | ||
</component> | ||
<component type="library"> | ||
<name>test</name> | ||
<licenses> | ||
<expression bom-ref="test">CC0-1.0</expression> | ||
</licenses> | ||
</component> | ||
<component type="library"> | ||
<name>test-1</name> | ||
<evidence> | ||
<licenses> | ||
<license> | ||
<id>Apache-2.0</id> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0</url> | ||
</license> | ||
<license> | ||
<id>LGPL-2.1-only</id> | ||
<url>https://opensource.org/licenses/LGPL-2.1</url> | ||
</license> | ||
</licenses> | ||
</evidence> | ||
</component> | ||
</components> | ||
<services> | ||
<service bom-ref="b2a46a4b-8367-4bae-9820-95557cfe03a8"> | ||
<name>Stock ticker service</name> | ||
<licenses> | ||
<license> | ||
<name>Partner license</name> | ||
</license> | ||
<license> | ||
<name>test</name> | ||
</license> | ||
</licenses> | ||
</service> | ||
</services> | ||
</bom> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters