com.github.janssk1.maven.plugin.graph.domain.ArtifactImpl 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 org.apache.maven.project.MavenProject;
import java.util.ArrayList;
import java.util.List;
/**
* User: janssk1
* Date: 8/13/11
* Time: 9:53 PM
*/
public class ArtifactImpl implements Artifact {
private MavenProject model;
private List dependencies;
private List dependencyManagerDependencies = new ArrayList();
private long size;
public ArtifactImpl(MavenProject model) {
this.model = model;
}
public List getDependencies() {
return dependencies;
}
public List getDependencyManagerDependencies() {
return dependencyManagerDependencies;
}
public void setDependencies(List dependencies) {
this.dependencies = dependencies;
}
public void setSize(long size) {
this.size = size;
}
public long getSize() {
return size;
}
}