blob: 0bd1bab8100c8b49bd375ad1639758e74ab3a411 [file] [log] [blame]
package org.apache.maven.shared.transfer.repository.internal;
/*
* 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.
*/
import org.apache.maven.shared.transfer.repository.RepositoryManager;
import org.codehaus.plexus.component.annotations.Component;
import org.sonatype.aether.repository.LocalRepository;
/**
*
*/
@Component( role = RepositoryManager.class, hint = "maven302" )
class Maven302RepositoryManager
extends Maven30RepositoryManager
{
/**
* Aether-1.9+ (i.e. M3.0.2+) expects "default", not "enhanced" as repositoryType
*/
@Override
protected String resolveRepositoryType( LocalRepository localRepository )
{
String repositoryType;
if ( "enhanced".equals( localRepository.getContentType() ) )
{
repositoryType = "default";
}
else
{
// this should be "simple"
repositoryType = localRepository.getContentType();
}
return repositoryType;
}
}