com.github.janssk1.maven.plugin.graph.ArtifactResolver 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;
import com.github.janssk1.maven.plugin.graph.domain.Artifact;
import com.github.janssk1.maven.plugin.graph.domain.ArtifactRevisionIdentifier;
/**
* User: janssk1
* Date: 8/14/11
* Time: 12:19 AM
*/
public interface ArtifactResolver {
Artifact resolveArtifact(ArtifactRevisionIdentifier identifier);
}