mirror of https://github.com/apache/maven.git
o fixinga bunch of embedder tests, 8 left to fix
git-svn-id: https://svn.apache.org/repos/asf/maven/components/branches/MNG-2766@774768 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
060c6d9784
commit
7ccc3d878e
|
@ -126,7 +126,7 @@ public class DefaultMaven
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
ProjectSorter projectSorter = new ProjectSorter( projects.values() );
|
ProjectSorter projectSorter = new ProjectSorter( projects.values() );
|
||||||
|
|
||||||
session = new MavenSession( container, request, result, projectSorter.getSortedProjects() );
|
session = new MavenSession( container, request, result, projectSorter.getSortedProjects() );
|
||||||
}
|
}
|
||||||
catch ( CycleDetectedException e )
|
catch ( CycleDetectedException e )
|
||||||
|
@ -163,7 +163,7 @@ public class DefaultMaven
|
||||||
}
|
}
|
||||||
|
|
||||||
result.setTopologicallySortedProjects( session.getProjects() );
|
result.setTopologicallySortedProjects( session.getProjects() );
|
||||||
|
|
||||||
result.setProject( session.getTopLevelProject() );
|
result.setProject( session.getTopLevelProject() );
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
|
|
|
@ -71,8 +71,9 @@ public class MavenSession
|
||||||
if ( projects.size() > 0 )
|
if ( projects.size() > 0 )
|
||||||
{
|
{
|
||||||
this.currentProject = projects.get( 0 );
|
this.currentProject = projects.get( 0 );
|
||||||
|
this.topLevelProject = projects.get( 0 );
|
||||||
}
|
}
|
||||||
this.projects = projects;
|
this.projects = projects;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Deprecated
|
@Deprecated
|
||||||
|
|
|
@ -106,7 +106,7 @@ public class DefaultMavenProjectBuilder
|
||||||
|
|
||||||
public MavenProject build( File pomFile, ProjectBuilderConfiguration configuration )
|
public MavenProject build( File pomFile, ProjectBuilderConfiguration configuration )
|
||||||
throws ProjectBuildingException
|
throws ProjectBuildingException
|
||||||
{
|
{
|
||||||
MavenProject project = projectCache.get( pomFile.getAbsolutePath() );
|
MavenProject project = projectCache.get( pomFile.getAbsolutePath() );
|
||||||
|
|
||||||
if ( project != null )
|
if ( project != null )
|
||||||
|
|
|
@ -24,22 +24,24 @@ import org.apache.maven.profiles.ProfileManager;
|
||||||
|
|
||||||
public interface MavenProjectBuilder
|
public interface MavenProjectBuilder
|
||||||
{
|
{
|
||||||
// site
|
MavenProject build( File projectFile, ProjectBuilderConfiguration configuration )
|
||||||
MavenProject build( File project, ArtifactRepository localRepository, ProfileManager profileManager )
|
|
||||||
throws ProjectBuildingException;
|
|
||||||
|
|
||||||
// remote-resources-plugin
|
|
||||||
MavenProject buildFromRepository( Artifact artifact, List<ArtifactRepository> remoteRepositories, ArtifactRepository localRepository )
|
|
||||||
throws ProjectBuildingException;
|
|
||||||
|
|
||||||
MavenProject build( File project, ProjectBuilderConfiguration configuration )
|
|
||||||
throws ProjectBuildingException;
|
throws ProjectBuildingException;
|
||||||
|
|
||||||
|
MavenProject buildFromRepository( Artifact projectArtifact, ProjectBuilderConfiguration configuration )
|
||||||
|
throws ProjectBuildingException;
|
||||||
|
|
||||||
|
//TODO maven-site-plugin
|
||||||
|
MavenProject build( File project, ArtifactRepository localRepository, ProfileManager profileManager )
|
||||||
|
throws ProjectBuildingException;
|
||||||
|
|
||||||
|
//TODO remote-resources-plugin
|
||||||
|
MavenProject buildFromRepository( Artifact artifact, List<ArtifactRepository> remoteRepositories, ArtifactRepository localRepository )
|
||||||
|
throws ProjectBuildingException;
|
||||||
|
|
||||||
|
// TODO: This also doesn't really belong here as it's a mix of project builder and artifact resolution and belongs
|
||||||
|
// in an integration component like the embedder.
|
||||||
MavenProjectBuildingResult buildProjectWithDependencies( File project, ProjectBuilderConfiguration configuration )
|
MavenProjectBuildingResult buildProjectWithDependencies( File project, ProjectBuilderConfiguration configuration )
|
||||||
throws ProjectBuildingException;
|
throws ProjectBuildingException;
|
||||||
|
|
||||||
MavenProject buildFromRepository( Artifact artifact, ProjectBuilderConfiguration configuration )
|
|
||||||
throws ProjectBuildingException;
|
|
||||||
|
|
||||||
// TODO: this is only to provide a project for plugins that don't need a project to execute but need some
|
// TODO: this is only to provide a project for plugins that don't need a project to execute but need some
|
||||||
// of the values from a MavenProject. Ideally this should be something internal and nothing outside Maven
|
// of the values from a MavenProject. Ideally this should be something internal and nothing outside Maven
|
||||||
|
|
|
@ -514,7 +514,6 @@ public class MavenEmbedder
|
||||||
public boolean isOffline( MavenExecutionRequest request )
|
public boolean isOffline( MavenExecutionRequest request )
|
||||||
throws MavenEmbedderException
|
throws MavenEmbedderException
|
||||||
{
|
{
|
||||||
// first, grab defaults including settings, in case <offline>true</offline> is set.
|
|
||||||
request = populator.populateDefaults( request, configuration );
|
request = populator.populateDefaults( request, configuration );
|
||||||
|
|
||||||
return request.isOffline();
|
return request.isOffline();
|
||||||
|
@ -525,9 +524,7 @@ public class MavenEmbedder
|
||||||
LoggerManager loggerManager = container.getLoggerManager();
|
LoggerManager loggerManager = container.getLoggerManager();
|
||||||
|
|
||||||
int oldThreshold = loggerManager.getThreshold();
|
int oldThreshold = loggerManager.getThreshold();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
loggerManager.setThresholds( request.getLoggingLevel() );
|
loggerManager.setThresholds( request.getLoggingLevel() );
|
||||||
|
|
|
@ -22,6 +22,7 @@ import java.util.List;
|
||||||
import java.util.Properties;
|
import java.util.Properties;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
|
||||||
|
import org.apache.maven.Maven;
|
||||||
import org.apache.maven.artifact.InvalidRepositoryException;
|
import org.apache.maven.artifact.InvalidRepositoryException;
|
||||||
import org.apache.maven.artifact.repository.ArtifactRepository;
|
import org.apache.maven.artifact.repository.ArtifactRepository;
|
||||||
import org.apache.maven.embedder.Configuration;
|
import org.apache.maven.embedder.Configuration;
|
||||||
|
@ -72,6 +73,8 @@ public class DefaultMavenExecutionRequestPopulator
|
||||||
{
|
{
|
||||||
executionProperties( request, configuration );
|
executionProperties( request, configuration );
|
||||||
|
|
||||||
|
pom( request, configuration );
|
||||||
|
|
||||||
settings( request, configuration );
|
settings( request, configuration );
|
||||||
|
|
||||||
localRepository( request, configuration );
|
localRepository( request, configuration );
|
||||||
|
@ -81,7 +84,7 @@ public class DefaultMavenExecutionRequestPopulator
|
||||||
profileManager( request, configuration );
|
profileManager( request, configuration );
|
||||||
|
|
||||||
processSettings( request, configuration );
|
processSettings( request, configuration );
|
||||||
|
|
||||||
return request;
|
return request;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -113,6 +116,34 @@ public class DefaultMavenExecutionRequestPopulator
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void pom( MavenExecutionRequest request, Configuration configuration )
|
||||||
|
{
|
||||||
|
// ------------------------------------------------------------------------
|
||||||
|
// POM
|
||||||
|
//
|
||||||
|
// If we are not given a specific POM file, but passed a base directory
|
||||||
|
// then we will use a release POM in the directory provide, or and then
|
||||||
|
// look for the standard POM.
|
||||||
|
// ------------------------------------------------------------------------
|
||||||
|
|
||||||
|
if ( ( request.getPom() != null ) && ( request.getPom().getParentFile() != null ) )
|
||||||
|
{
|
||||||
|
request.setBaseDirectory( request.getPom().getParentFile() );
|
||||||
|
}
|
||||||
|
else if ( ( request.getPom() == null ) && ( request.getBaseDirectory() != null ) )
|
||||||
|
{
|
||||||
|
File pom = new File( request.getBaseDirectory(), Maven.POMv4 );
|
||||||
|
|
||||||
|
request.setPom( pom );
|
||||||
|
}
|
||||||
|
// TODO: Is this correct?
|
||||||
|
else if ( request.getBaseDirectory() == null )
|
||||||
|
{
|
||||||
|
request.setBaseDirectory( new File( System.getProperty( "user.dir" ) ) );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
private void processSettings( MavenExecutionRequest request, Configuration configuration )
|
private void processSettings( MavenExecutionRequest request, Configuration configuration )
|
||||||
throws MavenEmbedderException
|
throws MavenEmbedderException
|
||||||
|
|
Loading…
Reference in New Issue