Added createArtifactWithClassifier(..) (see DefaultArtifactFactory, where this is already a public method).

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@164702 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
John Dennis Casey 2005-04-26 01:25:33 +00:00
parent 24083a54e8
commit 05aeb0daeb
1 changed files with 3 additions and 0 deletions

View File

@ -26,4 +26,7 @@ public interface ArtifactFactory
String inheritedScope );
Artifact createArtifact( String groupId, String artifactId, String knownVersion, String scope, String type );
public Artifact createArtifactWithClassifier( String groupId, String artifactId, String version, String scope,
String type, String classifier );
}