1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-02-09 13:47:31 +02:00

fix(gradle): Pin schema version of cyclonedx (#4367)

Co-authored-by: Ashly Mathew <ashly.mathew@sap.com>
Co-authored-by: Vyacheslav Starostin <32613074+vstarostin@users.noreply.github.com>
This commit is contained in:
Jk1484 2023-05-30 15:21:16 +05:00 committed by GitHub
parent 7f2e58b211
commit a2109c59b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -94,7 +94,7 @@ allprojects {
cyclonedxBom {
outputName = "` + gradleBomFilename + `"
outputFormat = "xml"
schemaVersion = "1.2"
schemaVersion = "1.4"
includeConfigs = ["runtimeClasspath"]
skipConfigs = ["compileClasspath", "testCompileClasspath"]
}

View File

@ -29,5 +29,5 @@ tasks.named('test') {
cyclonedxBom {
outputName = "bom-gradle"
outputFormat = "xml"
schemaVersion = "1.2"
schemaVersion = "1.4"
}