]> source.dussan.org Git - archiva.git/blob
b76d8740db1539990a58d97c891cf9379597745b
[archiva.git] /
1 package org.apache.archiva.metadata.repository.storage.maven2;
2
3 /*
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
11  *
12  *   http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17  * KIND, either express or implied.  See the License for the
18  * specific language governing permissions and limitations
19  * under the License.
20  */
21
22 import java.io.File;
23
24 import org.apache.archiva.metadata.repository.storage.RepositoryPathTranslator;
25 import org.apache.maven.model.Repository;
26 import org.apache.maven.model.building.FileModelSource;
27 import org.apache.maven.model.building.ModelSource;
28 import org.apache.maven.model.resolution.InvalidRepositoryException;
29 import org.apache.maven.model.resolution.ModelResolver;
30 import org.apache.maven.model.resolution.UnresolvableModelException;
31
32 public class RepositoryModelResolver
33     implements ModelResolver
34 {
35     private File basedir;
36
37     private RepositoryPathTranslator pathTranslator;
38
39     public RepositoryModelResolver( File basedir, RepositoryPathTranslator pathTranslator )
40     {
41         this.basedir = basedir;
42
43         this.pathTranslator = pathTranslator;
44     }
45
46     public ModelSource resolveModel( String groupId, String artifactId, String version )
47         throws UnresolvableModelException
48     {
49         String filename = artifactId + "-" + version + ".pom";
50         // TODO: we need to convert 1.0-20091120.112233-1 type paths to baseVersion for the below call - add a test
51         return new FileModelSource( pathTranslator.toFile( basedir, groupId, artifactId, version, filename ) );
52     }
53
54     public void addRepository( Repository repository )
55         throws InvalidRepositoryException
56     {
57         // we just ignore repositories outside of the current one for now
58         // TODO: it'd be nice to look them up from Archiva's set, but we want to do that by URL / mapping, not just the
59         //       ID since they will rarely match
60     }
61
62     public ModelResolver newCopy()
63     {
64         return new RepositoryModelResolver( basedir, pathTranslator );
65     }
66 }