I was just reading the source code for the Versions Maven Plugin, and noticed this snippet of code:
if ( reactorProjects.contains( getProject().getParent() ) )
{
getLog().info( "Project's parent is part of the reactor" );
return;
}
In general, when does a project (or the parent of a project) become part of the reactor and what are the implications of this?