All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.maven.shared.io.location.ArtifactLocation Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package org.apache.maven.shared.io.location;

import org.apache.maven.artifact.Artifact;

public class ArtifactLocation
    extends FileLocation
{

    public ArtifactLocation( Artifact artifact, String specification )
    {
        super( specification );
        setFile( artifact.getFile() );
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy