Commit ff47cf77 authored by Clement Bois's avatar Clement Bois
Browse files

Merge branch 'fix/sbom-output-format' into 'master'

fix(sbom): force output name with format

Closes #23

See merge request to-be-continuous/gradle!61
parents c3164e47 8d48985c
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -618,7 +618,8 @@ gradle-sbom:
        afterEvaluate { project ->
            project.apply plugin: 'org.cyclonedx.bom'
            project.cyclonedxBom {
                outputName = "bom.json"
                outputName = "bom"
                outputFormat = "json"
            }
        }
      }