com.github.janssk1.maven.plugin.graph.domain.MockArtifact 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.Collections;
import java.util.List;
/**
* User: janssk1
* Date: 8/14/11
* Time: 12:36 AM
*/
public class MockArtifact implements Artifact {
public List getDependencyManagerDependencies() {
return Collections.emptyList();
}
public List getDependencies() {
return Collections.emptyList();
}
public long getSize() {
return 0;
}
}