com.github.janssk1.maven.plugin.graph.domain.Artifact Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-dependencygraph-plugin Show documentation
Show all versions of maven-dependencygraph-plugin Show documentation
Generates a dependency graph in graphml format
package com.github.janssk1.maven.plugin.graph.domain;
import java.util.List;
/**
* User: janssk1
* Date: 8/13/11
* Time: 9:51 PM
*/
public interface Artifact {
List getDependencies();
List getDependencyManagerDependencies();
long getSize();
}