blob: 3d36e220d540c240d2e80c00d7ac2d3727eedfb3 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.maven.mercury.repository.tests;
import java.io.File;
import java.util.ArrayList;
import org.apache.maven.mercury.MavenDependencyProcessor;
import org.apache.maven.mercury.artifact.ArtifactBasicMetadata;
import org.apache.maven.mercury.repository.local.m2.LocalRepositoryM2;
import org.apache.maven.mercury.repository.local.m2.MetadataProcessorMock;
import org.apache.maven.mercury.transport.api.Server;
/**
*
*
* @author Oleg Gusakov
* @version $Id$
*
*/
public class LocalRepositoryReaderM2Test
extends AbstractRepositoryReaderM2Test
{
@Override
protected void setUp()
throws Exception
{
mdProcessor = new MetadataProcessorMock();
query = new ArrayList<ArtifactBasicMetadata>();
server = new Server( "test", new File("./target/test-classes/repo").toURL() );
repo = new LocalRepositoryM2( server, new MavenDependencyProcessor() );
repo.setDependencyProcessor( mdProcessor );
reader = repo.getReader();
super.setUp();
}
}