mirror of
https://github.com/MariaDB/server.git
synced 2025-08-09 03:51:36 +02:00

Store auxillary information for 3rd party projects, such as license identifier, CPE vendor and product, copyright statement in a cmake file.
53 lines
1.2 KiB
JSON
53 lines
1.2 KiB
JSON
{
|
|
"serialNumber": "urn:uuid:@UUID@",
|
|
"version": 1,
|
|
"$schema": "http://cyclonedx.org/schema/bom-1.6.schema.json",
|
|
"bomFormat": "CycloneDX",
|
|
"specVersion": "1.6",
|
|
"metadata": {
|
|
"lifecycles": [
|
|
{"phase": "build"}
|
|
],
|
|
"component": {
|
|
"bom-ref": "@CPACK_PACKAGE_NAME@",
|
|
"type": "application",
|
|
"name": "@CPACK_PACKAGE_NAME@",
|
|
"version": "@CPACK_PACKAGE_VERSION@",
|
|
"supplier": {
|
|
"name": "@CPACK_PACKAGE_VENDOR@",
|
|
"url": [
|
|
"@CPACK_PACKAGE_URL@"
|
|
]
|
|
},
|
|
"purl": "pkg:github/@GITHUB_REPO_USER@/@GITHUB_REPO_NAME@@@GIT_REV_SHORT@",
|
|
"cpe": "cpe:2.3:a:mariadb:mariadb:@CPACK_PACKAGE_VERSION@:*:*:*:*:*:*",
|
|
"licenses": [
|
|
{
|
|
"license": {
|
|
"id": "GPL-2.0"
|
|
}
|
|
}
|
|
],
|
|
"copyright": "Copyright (C) @CURRENT_YEAR@ MariaDB plc, MariaDB Foundation and others"
|
|
},
|
|
"authors": [
|
|
{
|
|
"email": "info@mariadb.com",
|
|
"name": "MariaDB"
|
|
}
|
|
],
|
|
"properties": [
|
|
{
|
|
"name": "package_name",
|
|
"value": "@CPACK_PACKAGE_FILE_NAME@"
|
|
}
|
|
],
|
|
"timestamp": "@TIMESTAMP@"
|
|
},
|
|
"components": [
|
|
@sbom_components@
|
|
],
|
|
"dependencies": [
|
|
@sbom_dependencies@
|
|
]
|
|
}
|