mirror of https://github.com/apache/archiva.git
updating classes for compile
git-svn-id: https://svn.apache.org/repos/asf/maven/repository-manager/trunk@358196 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
99757aa343
commit
79a092fb4b
|
@ -31,7 +31,7 @@ public class DefaultRepositoryIndexerFactory
|
|||
{
|
||||
Map indexerMap = new HashMap();
|
||||
|
||||
public RepositoryIndexer getRepositoryIndexer( ArtifactRepository repository, Class indexType )
|
||||
public RepositoryIndexer getRepositoryIndexer( String indexPath, ArtifactRepository repository, Class indexType )
|
||||
{
|
||||
if ( !indexerMap.containsKey( indexType ) )
|
||||
{
|
||||
|
@ -39,7 +39,7 @@ public class DefaultRepositoryIndexerFactory
|
|||
|
||||
if ( Artifact.class == indexType )
|
||||
{
|
||||
indexer = new ArtifactRepositoryIndexer( );
|
||||
indexer = new ArtifactRepositoryIndexer( repository, indexPath );
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
@ -27,5 +27,5 @@ public interface RepositoryIndexerFactory
|
|||
{
|
||||
String ROLE = RepositoryIndexerFactory.class.getName();
|
||||
|
||||
RepositoryIndexer getRepositoryIndexer( ArtifactRepository repository, Class indexType );
|
||||
RepositoryIndexer getRepositoryIndexer( String indexPath, ArtifactRepository repository, Class indexType );
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue