1 package org.apache.archiva.repository.maven.content;
4 * Licensed to the Apache Software Foundation (ASF) under one
5 * or more contributor license agreements. See the NOTICE file
6 * distributed with this work for additional information
7 * regarding copyright ownership. The ASF licenses this file
8 * to you under the Apache License, Version 2.0 (the
9 * "License"); you may not use this file except in compliance
10 * with the License. You may obtain a copy of the License at
12 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied. See the License for the
17 * specific language governing permissions and limitations
21 import org.apache.archiva.repository.maven.metadata.storage.ArtifactMappingProvider;
22 import org.apache.archiva.repository.maven.metadata.storage.DefaultArtifactMappingProvider;
25 * ArtifactExtensionMapping
29 public class ArtifactExtensionMapping
31 public static final String MAVEN_ONE_PLUGIN = "maven-one-plugin";
33 // TODO: now only used in Maven 1, we should be using M1 specific mappings
34 private static final ArtifactMappingProvider mapping = new DefaultArtifactMappingProvider();
36 public static String getExtension( String type )
38 String ext = mapping.mapTypeToExtension( type );
48 public static String mapExtensionAndClassifierToType( String classifier, String extension )
50 return mapExtensionAndClassifierToType( classifier, extension, extension );
53 public static String mapExtensionAndClassifierToType( String classifier, String extension,
54 String defaultExtension )
56 String value = mapping.mapClassifierAndExtensionToType( classifier, extension );
59 // TODO: Maven 1 plugin
61 if ( "tar.gz".equals( extension ) )
63 value1 = "distribution-tgz";
65 else if ( "tar.bz2".equals( extension ) )
67 value1 = "distribution-bzip";
69 else if ( "zip".equals( extension ) )
71 value1 = "distribution-zip";
75 return value != null ? value : defaultExtension;