aboutsummaryrefslogtreecommitdiffstats
path: root/poi-excelant
diff options
context:
space:
mode:
authorPJ Fanning <fanningpj@apache.org>2022-12-21 11:23:43 +0000
committerPJ Fanning <fanningpj@apache.org>2022-12-21 11:23:43 +0000
commitb8d4597ea4070bc46b92c0b859b80f517446d703 (patch)
treecb7b62efc2e6ffa0d7b13c55366c47750d1a0272 /poi-excelant
parent5b295d644b1bc75d69e91561df2bdf73e8b68647 (diff)
downloadpoi-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-excelant')
-rw-r--r--poi-excelant/build.gradle19
1 files changed, 19 insertions, 0 deletions
diff --git a/poi-excelant/build.gradle b/poi-excelant/build.gradle
index 9d634f18ec..2a4f7a9ae6 100644
--- a/poi-excelant/build.gradle
+++ b/poi-excelant/build.gradle
@@ -202,3 +202,22 @@ publishing {
}
}
}
+
+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-excelant-${project.version}.bom"
+ // The file format generated, can be xml, json or all for generating both
+ outputFormat = "all"
+ // Exclude BOM Serial Number
+ includeBomSerialNumber = true
+}