All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.owasp.dependencycheck.gradle.extension.HostedSuppressionsExtension.groovy Maven / Gradle / Ivy

Go to download

OWASP dependency-check gradle plugin is a software composition analysis tool used to find known vulnerable dependencies.

There is a newer version: 10.0.3
Show newest version
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
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy