allow creation without a file (purely repository)

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@290083 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Leslie Porter 2005-09-19 07:51:38 +00:00
parent 9cae224e0c
commit 386cc730ed
1 changed files with 5 additions and 0 deletions

View File

@ -46,6 +46,11 @@ public class ProjectArtifactMetadata
{
private final File file;
public ProjectArtifactMetadata( Artifact artifact )
{
this( artifact, null );
}
public ProjectArtifactMetadata( Artifact artifact, File file )
{
super( artifact );