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