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

com.kribblo.github.mojo.ProjectInfo Maven / Gradle / Ivy

Go to download

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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy