import org.apache.archiva.redback.components.taskqueue.Task;
import org.apache.archiva.redback.components.taskqueue.execution.ThreadedTaskQueueExecutor;
import org.apache.archiva.scheduler.repository.DefaultRepositoryArchivaTaskScheduler;
-import org.apache.maven.index.NexusIndexer;
import org.apache.maven.index.context.IndexingContext;
import org.quartz.SchedulerException;
import org.springframework.web.context.WebApplicationContext;
private DefaultRepositoryArchivaTaskScheduler repositoryTaskScheduler;
- private NexusIndexer nexusIndexer;
-
@Override
public void contextInitialized( ServletContextEvent contextEvent )
{
tqeIndexing = wac.getBean( "taskQueueExecutor#indexing", ThreadedTaskQueueExecutor.class );
- nexusIndexer = wac.getBean( NexusIndexer.class );
try
{
//applicationContext.
}
- // closing correctly indexer to close correctly lock and file
- for ( IndexingContext indexingContext : nexusIndexer.getIndexingContexts().values() )
- {
- try
- {
- indexingContext.close( false );
- }
- catch ( Exception e )
- {
- servletContext.log( "skip error closing indexingContext " + e.getMessage(), e );
- }
- }
}