}
private Artifact createArtifact( String groupId, String artifactId, String type, String version, String scope )
{
VersionRange versionRange = VersionRange.createFromVersion( version );
ArtifactHandler handler = new DefaultArtifactHandler();
return new DefaultArtifact( groupId, artifactId, versionRange, scope, type, null, handler );
}