{
Artifact artifact = new Artifact( namespace, projectId, version );
artifact.setRepositoryId( repositoryId );
+ artifact.setContext( repositoryId );
return deleteArtifact( artifact );
}
{
String repositoryId = artifact.getContext();
+ // some rest call can use context or repositoryId
+ // so try both!!
+ if ( StringUtils.isEmpty( repositoryId ) )
+ {
+ repositoryId = artifact.getRepositoryId();
+ }
if ( StringUtils.isEmpty( repositoryId ) )
{
throw new ArchivaRestServiceException( "repositoryId cannot be null", 400, null );