org.owasp.dependencycheck.gradle.extension.AdditionalCpe.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
import org.gradle.api.Named
/**
* Holder for the information regarding an additional CPE to be checked.
*/
@groovy.transform.CompileStatic
class AdditionalCpe implements Named {
AdditionalCpe(String name) {
this.name = name;
}
/**
* Name assigned to the CPE entry during configuration.
*/
String name;
/**
* Description for the what the CPE represents.
*/
String description
/**
* The CPE to be checked against the database.
*/
String cpe
}