org.owasp.dependencycheck.gradle.extension.HostedSuppressionsExtension.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dependency-check-gradle Show documentation
Show all versions of dependency-check-gradle Show documentation
OWASP dependency-check gradle plugin is a software composition analysis tool used to find known vulnerable dependencies.
package org.owasp.dependencycheck.gradle.extension
/**
* The advanced configuration for the hosted suppressions file.
*/
class HostedSuppressionsExtension {
/**
* Whether the hosted suppressions fie will be used.
*/
Boolean enabled
/**
* The URL for a mirrored hosted suppressions file.
*/
String url
/**
* Whether the hosted suppressions file should be updated regardless of the `autoupdate` setting.
*/
Boolean forceupdate
/**
* The number of hours to wait before checking for changes in the hosted suppressions file.
*/
Integer validForHours
}