mirror of https://github.com/apache/archiva.git
add a new field in managed repository to store staging is needed to prevent stage repo remove when updating.
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1388251 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
bf0489bc63
commit
78087e7d08
|
@ -657,6 +657,15 @@
|
|||
</description>
|
||||
<defaultValue>false</defaultValue>
|
||||
</field>
|
||||
<field>
|
||||
<name>stageRepoNeeded</name>
|
||||
<version>1.0.0+</version>
|
||||
<type>boolean</type>
|
||||
<description>
|
||||
Need a staging repository
|
||||
</description>
|
||||
<defaultValue>false</defaultValue>
|
||||
</field>
|
||||
</fields>
|
||||
</class>
|
||||
<class>
|
||||
|
|
|
@ -66,12 +66,11 @@ import java.util.List;
|
|||
import java.util.Map;
|
||||
|
||||
/**
|
||||
*
|
||||
* FIXME review the staging mechanism to have a per user session one
|
||||
*
|
||||
* @author Olivier Lamy
|
||||
*/
|
||||
@Service ("managedRepositoryAdmin#default")
|
||||
@Service ( "managedRepositoryAdmin#default" )
|
||||
public class DefaultManagedRepositoryAdmin
|
||||
extends AbstractRepositoryAdmin
|
||||
implements ManagedRepositoryAdmin
|
||||
|
@ -82,7 +81,7 @@ public class DefaultManagedRepositoryAdmin
|
|||
public static final String STAGE_REPO_ID_END = "-stage";
|
||||
|
||||
@Inject
|
||||
@Named (value = "archivaTaskScheduler#repository")
|
||||
@Named ( value = "archivaTaskScheduler#repository" )
|
||||
private RepositoryArchivaTaskScheduler repositoryTaskScheduler;
|
||||
|
||||
@Inject
|
||||
|
@ -162,13 +161,13 @@ public class DefaultManagedRepositoryAdmin
|
|||
|
||||
for ( ManagedRepositoryConfiguration repoConfig : managedRepoConfigs )
|
||||
{
|
||||
// TODO add staging repo information back too
|
||||
ManagedRepository repo =
|
||||
new ManagedRepository( repoConfig.getId(), repoConfig.getName(), repoConfig.getLocation(),
|
||||
repoConfig.getLayout(), repoConfig.isSnapshots(), repoConfig.isReleases(),
|
||||
repoConfig.isBlockRedeployments(), repoConfig.getRefreshCronExpression(),
|
||||
repoConfig.getIndexDir(), repoConfig.isScanned(), repoConfig.getDaysOlder(),
|
||||
repoConfig.getRetentionCount(), repoConfig.isDeleteReleasedSnapshots(), false );
|
||||
repoConfig.getRetentionCount(), repoConfig.isDeleteReleasedSnapshots(),
|
||||
repoConfig.isStageRepoNeeded() );
|
||||
repo.setDescription( repoConfig.getDescription() );
|
||||
repo.setSkipPackedIndexCreation( repoConfig.isSkipPackedIndexCreation() );
|
||||
managedRepos.add( repo );
|
||||
|
@ -257,6 +256,7 @@ public class DefaultManagedRepositoryAdmin
|
|||
repository.setIndexDir( indexDir );
|
||||
repository.setDescription( description );
|
||||
repository.setSkipPackedIndexCreation( skipPackedIndexCreation );
|
||||
repository.setStageRepoNeeded( stageRepoNeeded );
|
||||
|
||||
try
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue