11 lines
238 B
Groovy
11 lines
238 B
Groovy
apply plugin: 'com.fizzpod.osv-scanner'
|
|
|
|
osvScanner {
|
|
sbom = rootProject.file('build/reports/bom.json')
|
|
format = "json"
|
|
location = 'reports'
|
|
failOn = 'count'
|
|
failOnThreshold = 100000
|
|
}
|
|
|
|
osvSbom.dependsOn(cyclonedxBom)
|