cyclonedx-gradle-plugin icon indicating copy to clipboard operation
cyclonedx-gradle-plugin copied to clipboard

Capture Input Task Names and Extra Build Arguments in BOM

Open VinodAnandan opened this issue 2 years ago • 0 comments

Currently, the CycloneDX Gradle plugin is not capturing the build input task name and extra build arguments in bom, we should also capture it in "properties" ( https://cyclonedx.org/docs/1.5/json/#properties ) similar to the maven plugin ( example : https://repo1.maven.org/maven2/org/cyclonedx/cyclonedx-maven-plugin/2.7.11/cyclonedx-maven-plugin-2.7.11-cyclonedx.json )

"properties": [
{
"name": "maven.goal",
"value": "makeBom"
},
{
"name": "maven.scopes",
"value": "compile,runtime,system"
},
{
"name": "maven.reproducible",
"value": "enabled"
}
]

VinodAnandan avatar Jan 20 '24 00:01 VinodAnandan