com.h3xstream.maven.tpl.ProjectSummary Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of security-versions Show documentation
Show all versions of security-versions Show documentation
Maven plugin that identify vulnerable libraries in Maven dependencies
The newest version!
package com.h3xstream.maven.tpl;
import org.apache.maven.project.MavenProject;
import java.util.List;
public class ProjectSummary {
private final MavenProject project;
private final List libraries;
public ProjectSummary(MavenProject project, List libraries) {
this.project = project;
this.libraries = libraries;
}
public List getLibraries() {
return libraries;
}
public MavenProject getProject() {
return project;
}
}