View Javadoc

1   package org.apache.maven.project;
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  import java.util.List;
24  
25  import org.apache.maven.artifact.Artifact;
26  import org.apache.maven.artifact.repository.ArtifactRepository;
27  import org.apache.maven.artifact.resolver.ArtifactNotFoundException;
28  import org.apache.maven.artifact.resolver.ArtifactResolutionException;
29  import org.apache.maven.profiles.ProfileManager;
30  import org.apache.maven.wagon.events.TransferListener;
31  
32  @Deprecated
33  public interface MavenProjectBuilder
34  {
35  
36      MavenProject build( File pom, ProjectBuilderConfiguration configuration )
37          throws ProjectBuildingException;
38  
39      //TODO maven-site-plugin -- Vincent, Dennis and Lukas are checking but this doesn't appear to be required anymore.
40      MavenProject build( File pom, ArtifactRepository localRepository, ProfileManager profileManager )
41          throws ProjectBuildingException;
42  
43      //TODO remote-resources-plugin
44      MavenProject buildFromRepository( Artifact artifact, List<ArtifactRepository> remoteRepositories,
45                                        ArtifactRepository localRepository )
46          throws ProjectBuildingException;
47  
48      //TODO remote-resources-plugin
49      MavenProject buildFromRepository( Artifact artifact, List<ArtifactRepository> remoteRepositories,
50                                        ArtifactRepository localRepository, boolean allowStubModel )
51          throws ProjectBuildingException;
52  
53      // TODO: this is only to provide a project for plugins that don't need a project to execute but need some
54      // of the values from a MavenProject. Ideally this should be something internal and nothing outside Maven
55      // would ever need this so it should not be exposed in a public API
56      MavenProject buildStandaloneSuperProject( ProjectBuilderConfiguration configuration )
57          throws ProjectBuildingException;
58  
59      MavenProject buildStandaloneSuperProject( ArtifactRepository localRepository )
60          throws ProjectBuildingException;
61  
62      MavenProject buildStandaloneSuperProject( ArtifactRepository localRepository, ProfileManager profileManager )
63          throws ProjectBuildingException;
64  
65      MavenProject buildWithDependencies( File pom, ArtifactRepository localRepository,
66                                          ProfileManager globalProfileManager, TransferListener transferListener )
67          throws ProjectBuildingException, ArtifactResolutionException, ArtifactNotFoundException;
68  
69      MavenProject buildWithDependencies( File pom, ArtifactRepository localRepository,
70                                          ProfileManager globalProfileManager )
71          throws ProjectBuildingException, ArtifactResolutionException, ArtifactNotFoundException;
72  
73  }