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

org.owasp.dependencycheck.gradle.extension.AdditionalCpe.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

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
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy