Browse Source

fix issue when deleting project version non snapshot

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1558620 13f79535-47bb-0310-9956-ffa450edef68
tags/archiva-2.0.0-RC1
Olivier Lamy 10 years ago
parent
commit
28c5e2e323

+ 7
- 0
archiva-modules/archiva-web/archiva-rest/archiva-rest-services/src/main/java/org/apache/archiva/rest/services/DefaultRepositoriesService.java View File

@@ -610,6 +610,7 @@ public class DefaultRepositoriesService
{
Artifact artifact = new Artifact( namespace, projectId, version );
artifact.setRepositoryId( repositoryId );
artifact.setContext( repositoryId );
return deleteArtifact( artifact );
}

@@ -711,6 +712,12 @@ public class DefaultRepositoriesService
{

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 );

Loading…
Cancel
Save