com.kribblo.github.mojo.ProjectInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of project-info-maven-plugin Show documentation
Show all versions of project-info-maven-plugin Show documentation
Light-weight project information extractor, for reporting optionally filtered dependencies and some other things on a project. Useful for collecting version information and who depends on who in an environment with multiple servers, perhaps many many small services.
The newest version!
package com.kribblo.github.mojo;
import java.util.Set;
public class ProjectInfo {
public String artifactId;
public String groupId;
public String version;
public String name;
public String description;
public Set dependencies;
public String groupIdFilter;
public Set filteredDependencies;
@Override
public String toString() {
return groupId + ":" + artifactId + ":" + version;
}
}