package com.akirkpatrick.swfclipse; import java.io.File; import org.apache.maven.artifact.Artifact; import org.apache.maven.plugin.ide.IdeDependency; public class SwfIdeDependency extends IdeDependency { private Artifact artifact; public SwfIdeDependency(String groupId, String artifactId, String version, String classifier, boolean referencedProject, boolean testDependency, boolean systemScoped, boolean provided, boolean addedToClasspath, File file, String type, boolean osgiBundle, String osgiSymbolicName, int dependencyDepth, String eclipseProjectName) { super(groupId, artifactId, version, classifier, referencedProject, testDependency, systemScoped, provided, addedToClasspath, file, type, osgiBundle, osgiSymbolicName, dependencyDepth, eclipseProjectName); } public Artifact getArtifact() { return artifact; } public void setArtifact(Artifact artifact) { this.artifact = artifact; } }