diff options
author | PJ Fanning <fanningpj@apache.org> | 2022-12-21 11:23:43 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2022-12-21 11:23:43 +0000 |
commit | b8d4597ea4070bc46b92c0b859b80f517446d703 (patch) | |
tree | cb7b62efc2e6ffa0d7b13c55366c47750d1a0272 /poi-ooxml-lite | |
parent | 5b295d644b1bc75d69e91561df2bdf73e8b68647 (diff) | |
download | poi-b8d4597ea4070bc46b92c0b859b80f517446d703.tar.gz poi-b8d4597ea4070bc46b92c0b859b80f517446d703.zip |
cyclonedx per module
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1906134 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi-ooxml-lite')
-rw-r--r-- | poi-ooxml-lite/build.gradle | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/poi-ooxml-lite/build.gradle b/poi-ooxml-lite/build.gradle index 7f6c5a4776..a21bad71cf 100644 --- a/poi-ooxml-lite/build.gradle +++ b/poi-ooxml-lite/build.gradle @@ -166,4 +166,23 @@ sourcesJar { spotbugsTest.enabled = false spotbugsMain.enabled = false javadoc.enabled = false -javadocJar.enabled = false
\ No newline at end of file +javadocJar.enabled = false + +cyclonedxBom { + // includeConfigs is the list of configuration names to include when generating the BOM (leave empty to include every configuration) + includeConfigs = ["runtimeClasspath"] + // skipConfigs is a list of configuration names to exclude when generating the BOM + //skipConfigs = ["compileClasspath", "testCompileClasspath"] + // Specified the type of project being built. Defaults to 'library' + projectType = "library" + // Specified the version of the CycloneDX specification to use. Defaults to 1.4. + schemaVersion = "1.4" + // Boms destination directory (defaults to build/reports) + destination = file("build/reports") + // The file name for the generated BOMs (before the file format suffix). Defaults to 'bom' + outputName = "poi-ooxml-lite-${project.version}.bom" + // The file format generated, can be xml, json or all for generating both + outputFormat = "all" + // Exclude BOM Serial Number + includeBomSerialNumber = true +}
\ No newline at end of file |