mirror of https://github.com/apache/maven.git
Adding methods for backward compat, and deprecating them...and adding a few debug log statements.
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@498044 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
cf308da3de
commit
e7412f71cf
|
@ -55,6 +55,7 @@ import org.apache.maven.project.artifact.InvalidDependencyVersionException;
|
||||||
import org.apache.maven.project.artifact.MavenMetadataSource;
|
import org.apache.maven.project.artifact.MavenMetadataSource;
|
||||||
import org.apache.maven.project.path.PathTranslator;
|
import org.apache.maven.project.path.PathTranslator;
|
||||||
import org.apache.maven.reporting.MavenReport;
|
import org.apache.maven.reporting.MavenReport;
|
||||||
|
import org.apache.maven.settings.Settings;
|
||||||
import org.codehaus.plexus.DefaultPlexusContainer;
|
import org.codehaus.plexus.DefaultPlexusContainer;
|
||||||
import org.codehaus.plexus.PlexusConstants;
|
import org.codehaus.plexus.PlexusConstants;
|
||||||
import org.codehaus.plexus.PlexusContainer;
|
import org.codehaus.plexus.PlexusContainer;
|
||||||
|
@ -76,12 +77,9 @@ import org.codehaus.plexus.personality.plexus.lifecycle.phase.Contextualizable;
|
||||||
import org.codehaus.plexus.util.StringUtils;
|
import org.codehaus.plexus.util.StringUtils;
|
||||||
import org.codehaus.plexus.util.xml.Xpp3Dom;
|
import org.codehaus.plexus.util.xml.Xpp3Dom;
|
||||||
|
|
||||||
import java.io.File;
|
|
||||||
import java.net.URL;
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.HashSet;
|
import java.util.HashSet;
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
import java.util.LinkedHashSet;
|
import java.util.LinkedHashSet;
|
||||||
|
@ -101,8 +99,6 @@ public class DefaultPluginManager
|
||||||
|
|
||||||
private Log mojoLogger;
|
private Log mojoLogger;
|
||||||
|
|
||||||
private Map resolvedCoreArtifactFiles = new HashMap();
|
|
||||||
|
|
||||||
// component requirements
|
// component requirements
|
||||||
protected PathTranslator pathTranslator;
|
protected PathTranslator pathTranslator;
|
||||||
|
|
||||||
|
@ -149,6 +145,27 @@ public class DefaultPluginManager
|
||||||
session.getLocalRepository() );
|
session.getLocalRepository() );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated use {@link PluginManager#verifyPlugin(Plugin, MavenProject, Settings)}
|
||||||
|
*/
|
||||||
|
public PluginDescriptor verifyPlugin( Plugin plugin, MavenProject project, Settings settings,
|
||||||
|
ArtifactRepository localRepository )
|
||||||
|
throws ArtifactResolutionException, PluginVersionResolutionException, ArtifactNotFoundException,
|
||||||
|
InvalidVersionSpecificationException, InvalidPluginException, PluginManagerException, PluginNotFoundException,
|
||||||
|
PluginVersionNotFoundException
|
||||||
|
{
|
||||||
|
// TODO: this should be possibly outside
|
||||||
|
// All version-resolution logic has been moved to DefaultPluginVersionManager.
|
||||||
|
if ( plugin.getVersion() == null )
|
||||||
|
{
|
||||||
|
String version = pluginVersionManager.resolvePluginVersion( plugin.getGroupId(), plugin.getArtifactId(),
|
||||||
|
project, settings, localRepository );
|
||||||
|
plugin.setVersion( version );
|
||||||
|
}
|
||||||
|
|
||||||
|
return verifyVersionedPlugin( plugin, project, localRepository );
|
||||||
|
}
|
||||||
|
|
||||||
public PluginDescriptor verifyPlugin( Plugin plugin,
|
public PluginDescriptor verifyPlugin( Plugin plugin,
|
||||||
MavenProject project,
|
MavenProject project,
|
||||||
MavenSession session )
|
MavenSession session )
|
||||||
|
@ -176,6 +193,15 @@ public class DefaultPluginManager
|
||||||
{
|
{
|
||||||
ArtifactRepository localRepository = session.getLocalRepository();
|
ArtifactRepository localRepository = session.getLocalRepository();
|
||||||
|
|
||||||
|
return verifyVersionedPlugin( plugin, project, localRepository );
|
||||||
|
}
|
||||||
|
|
||||||
|
private PluginDescriptor verifyVersionedPlugin( Plugin plugin, MavenProject project,
|
||||||
|
ArtifactRepository localRepository )
|
||||||
|
throws PluginVersionResolutionException, ArtifactNotFoundException, ArtifactResolutionException,
|
||||||
|
InvalidVersionSpecificationException, InvalidPluginException, PluginManagerException, PluginNotFoundException
|
||||||
|
{
|
||||||
|
|
||||||
// TODO: this might result in an artifact "RELEASE" being resolved continuously
|
// TODO: this might result in an artifact "RELEASE" being resolved continuously
|
||||||
// FIXME: need to find out how a plugin gets marked as 'installed'
|
// FIXME: need to find out how a plugin gets marked as 'installed'
|
||||||
// and no ChildContainer exists. The check for that below fixes
|
// and no ChildContainer exists. The check for that below fixes
|
||||||
|
@ -201,7 +227,7 @@ public class DefaultPluginManager
|
||||||
|
|
||||||
if ( !pluginCollector.isPluginInstalled( plugin ) )
|
if ( !pluginCollector.isPluginInstalled( plugin ) )
|
||||||
{
|
{
|
||||||
addPlugin( plugin, pluginArtifact, project, session );
|
addPlugin( plugin, pluginArtifact, project, localRepository );
|
||||||
}
|
}
|
||||||
|
|
||||||
project.addPlugin( plugin );
|
project.addPlugin( plugin );
|
||||||
|
@ -266,6 +292,31 @@ public class DefaultPluginManager
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected void addPlugin( Plugin plugin,
|
||||||
|
Artifact pluginArtifact,
|
||||||
|
MavenProject project,
|
||||||
|
ArtifactRepository localRepository )
|
||||||
|
throws ArtifactNotFoundException, ArtifactResolutionException, PluginManagerException, InvalidPluginException
|
||||||
|
{
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
// Get the dependencies for the Plugin
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
// the only Plugin instance which will have dependencies is the one specified in the project.
|
||||||
|
// We need to look for a Plugin instance there, in case the instance we're using didn't come from
|
||||||
|
// the project.
|
||||||
|
Plugin projectPlugin = (Plugin) project.getBuild().getPluginsAsMap().get( plugin.getKey() );
|
||||||
|
|
||||||
|
if ( projectPlugin == null )
|
||||||
|
{
|
||||||
|
projectPlugin = plugin;
|
||||||
|
}
|
||||||
|
|
||||||
|
Set artifacts = getPluginArtifacts( pluginArtifact, projectPlugin, project, localRepository );
|
||||||
|
|
||||||
|
addPlugin( plugin, projectPlugin, pluginArtifact, artifacts );
|
||||||
|
}
|
||||||
|
|
||||||
protected void addPlugin( Plugin plugin,
|
protected void addPlugin( Plugin plugin,
|
||||||
Artifact pluginArtifact,
|
Artifact pluginArtifact,
|
||||||
MavenProject project,
|
MavenProject project,
|
||||||
|
@ -286,7 +337,14 @@ public class DefaultPluginManager
|
||||||
projectPlugin = plugin;
|
projectPlugin = plugin;
|
||||||
}
|
}
|
||||||
|
|
||||||
Set artifacts = getPluginArtifacts( pluginArtifact, projectPlugin, project, session );
|
Set artifacts = getPluginArtifacts( pluginArtifact, projectPlugin, project, session.getLocalRepository() );
|
||||||
|
|
||||||
|
addPlugin( plugin, projectPlugin, pluginArtifact, artifacts );
|
||||||
|
}
|
||||||
|
|
||||||
|
private void addPlugin( Plugin plugin, Plugin projectPlugin, Artifact pluginArtifact, Set artifacts )
|
||||||
|
throws ArtifactNotFoundException, ArtifactResolutionException, PluginManagerException, InvalidPluginException
|
||||||
|
{
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
// Realm creation for a plugin
|
// Realm creation for a plugin
|
||||||
|
@ -320,6 +378,8 @@ public class DefaultPluginManager
|
||||||
// The PluginCollector will now know about the plugin we are trying to load
|
// The PluginCollector will now know about the plugin we are trying to load
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
getLogger().debug( "Checking for plugin descriptor for: " + plugin.getKey() + " in collector: " + pluginCollector );
|
||||||
|
|
||||||
PluginDescriptor pluginDescriptor = pluginCollector.getPluginDescriptor( projectPlugin );
|
PluginDescriptor pluginDescriptor = pluginCollector.getPluginDescriptor( projectPlugin );
|
||||||
|
|
||||||
if ( pluginDescriptor == null )
|
if ( pluginDescriptor == null )
|
||||||
|
@ -339,17 +399,16 @@ public class DefaultPluginManager
|
||||||
|
|
||||||
pluginDescriptor.setArtifacts( new ArrayList( artifacts ) );
|
pluginDescriptor.setArtifacts( new ArrayList( artifacts ) );
|
||||||
|
|
||||||
getLogger().debug( "Realm for plugin: " + plugin.getKey() + ":\n" + componentRealm );
|
getLogger().info( "Realm for plugin: " + plugin.getKey() + ":\n" + componentRealm );
|
||||||
|
|
||||||
pluginDescriptor.setClassRealm( componentRealm );
|
pluginDescriptor.setClassRealm( componentRealm );
|
||||||
}
|
}
|
||||||
|
|
||||||
private Set getPluginArtifacts( Artifact pluginArtifact,
|
private Set getPluginArtifacts( Artifact pluginArtifact, Plugin plugin, MavenProject project,
|
||||||
Plugin plugin,
|
ArtifactRepository localRepository )
|
||||||
MavenProject project,
|
|
||||||
MavenSession session )
|
|
||||||
throws InvalidPluginException, ArtifactNotFoundException, ArtifactResolutionException
|
throws InvalidPluginException, ArtifactNotFoundException, ArtifactResolutionException
|
||||||
{
|
{
|
||||||
|
|
||||||
Set projectPluginDependencies;
|
Set projectPluginDependencies;
|
||||||
|
|
||||||
try
|
try
|
||||||
|
@ -362,8 +421,6 @@ public class DefaultPluginManager
|
||||||
throw new InvalidPluginException( "Plugin '" + plugin + "' is invalid: " + e.getMessage(), e );
|
throw new InvalidPluginException( "Plugin '" + plugin + "' is invalid: " + e.getMessage(), e );
|
||||||
}
|
}
|
||||||
|
|
||||||
ArtifactRepository localRepository = session.getLocalRepository();
|
|
||||||
|
|
||||||
ResolutionGroup resolutionGroup;
|
ResolutionGroup resolutionGroup;
|
||||||
|
|
||||||
try
|
try
|
||||||
|
@ -645,7 +702,14 @@ public class DefaultPluginManager
|
||||||
|
|
||||||
ClassRealm oldRealm = DefaultPlexusContainer.setLookupRealm( realm );
|
ClassRealm oldRealm = DefaultPlexusContainer.setLookupRealm( realm );
|
||||||
|
|
||||||
plugin = (Mojo) container.lookup( Mojo.ROLE, mojoDescriptor.getRoleHint(), realm );
|
if ( realm != null )
|
||||||
|
{
|
||||||
|
plugin = (Mojo) container.lookup( Mojo.ROLE, mojoDescriptor.getRoleHint(), realm );
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
plugin = (Mojo) container.lookup( Mojo.ROLE, mojoDescriptor.getRoleHint() );
|
||||||
|
}
|
||||||
|
|
||||||
DefaultPlexusContainer.setLookupRealm( oldRealm );
|
DefaultPlexusContainer.setLookupRealm( oldRealm );
|
||||||
|
|
||||||
|
|
|
@ -58,6 +58,8 @@ public class MavenPluginCollector
|
||||||
{
|
{
|
||||||
pluginsInProcess.add( key );
|
pluginsInProcess.add( key );
|
||||||
|
|
||||||
|
getLogger().debug( this + ": Discovered plugin: " + key );
|
||||||
|
|
||||||
pluginDescriptors.put( key, pluginDescriptor );
|
pluginDescriptors.put( key, pluginDescriptor );
|
||||||
|
|
||||||
// TODO: throw an (not runtime) exception if there is a prefix overlap - means doing so elsewhere
|
// TODO: throw an (not runtime) exception if there is a prefix overlap - means doing so elsewhere
|
||||||
|
|
|
@ -54,6 +54,12 @@ public interface PluginManager
|
||||||
|
|
||||||
Plugin getPluginDefinitionForPrefix( String prefix, MavenSession session, MavenProject project );
|
Plugin getPluginDefinitionForPrefix( String prefix, MavenSession session, MavenProject project );
|
||||||
|
|
||||||
|
PluginDescriptor verifyPlugin( Plugin plugin, MavenProject project, Settings settings,
|
||||||
|
ArtifactRepository localRepository )
|
||||||
|
throws ArtifactResolutionException, PluginVersionResolutionException, ArtifactNotFoundException,
|
||||||
|
InvalidVersionSpecificationException, InvalidPluginException, PluginManagerException, PluginNotFoundException,
|
||||||
|
PluginVersionNotFoundException;
|
||||||
|
|
||||||
PluginDescriptor verifyPlugin( Plugin plugin, MavenProject project, MavenSession session )
|
PluginDescriptor verifyPlugin( Plugin plugin, MavenProject project, MavenSession session )
|
||||||
throws ArtifactResolutionException, PluginVersionResolutionException, ArtifactNotFoundException,
|
throws ArtifactResolutionException, PluginVersionResolutionException, ArtifactNotFoundException,
|
||||||
InvalidVersionSpecificationException, InvalidPluginException, PluginManagerException, PluginNotFoundException,
|
InvalidVersionSpecificationException, InvalidPluginException, PluginManagerException, PluginNotFoundException,
|
||||||
|
|
|
@ -87,7 +87,11 @@ public class DefaultPluginVersionManager
|
||||||
MavenSession session )
|
MavenSession session )
|
||||||
throws PluginVersionResolutionException, InvalidPluginException, PluginVersionNotFoundException
|
throws PluginVersionResolutionException, InvalidPluginException, PluginVersionNotFoundException
|
||||||
{
|
{
|
||||||
return resolvePluginVersion( groupId, artifactId, project, session, false );
|
Settings settings = session.getSettings();
|
||||||
|
|
||||||
|
ArtifactRepository localRepository = session.getLocalRepository();
|
||||||
|
|
||||||
|
return resolvePluginVersion( groupId, artifactId, project, settings, localRepository, false );
|
||||||
}
|
}
|
||||||
|
|
||||||
public String resolveReportPluginVersion( String groupId,
|
public String resolveReportPluginVersion( String groupId,
|
||||||
|
@ -96,19 +100,47 @@ public class DefaultPluginVersionManager
|
||||||
MavenSession session )
|
MavenSession session )
|
||||||
throws PluginVersionResolutionException, InvalidPluginException, PluginVersionNotFoundException
|
throws PluginVersionResolutionException, InvalidPluginException, PluginVersionNotFoundException
|
||||||
{
|
{
|
||||||
return resolvePluginVersion( groupId, artifactId, project, session, true );
|
Settings settings = session.getSettings();
|
||||||
|
|
||||||
|
ArtifactRepository localRepository = session.getLocalRepository();
|
||||||
|
|
||||||
|
return resolvePluginVersion( groupId, artifactId, project, settings, localRepository, true );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated
|
||||||
|
*/
|
||||||
|
public String resolvePluginVersion( String groupId,
|
||||||
|
String artifactId,
|
||||||
|
MavenProject project,
|
||||||
|
Settings settings,
|
||||||
|
ArtifactRepository localRepository )
|
||||||
|
throws PluginVersionResolutionException, InvalidPluginException, PluginVersionNotFoundException
|
||||||
|
{
|
||||||
|
return resolvePluginVersion( groupId, artifactId, project, settings, localRepository, false );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated
|
||||||
|
*/
|
||||||
|
public String resolveReportPluginVersion( String groupId,
|
||||||
|
String artifactId,
|
||||||
|
MavenProject project,
|
||||||
|
Settings settings,
|
||||||
|
ArtifactRepository localRepository )
|
||||||
|
throws PluginVersionResolutionException, InvalidPluginException, PluginVersionNotFoundException
|
||||||
|
{
|
||||||
|
return resolvePluginVersion( groupId, artifactId, project, settings, localRepository, true );
|
||||||
}
|
}
|
||||||
|
|
||||||
private String resolvePluginVersion( String groupId,
|
private String resolvePluginVersion( String groupId,
|
||||||
String artifactId,
|
String artifactId,
|
||||||
MavenProject project,
|
MavenProject project,
|
||||||
MavenSession session,
|
Settings settings,
|
||||||
|
ArtifactRepository localRepository,
|
||||||
boolean resolveAsReportPlugin )
|
boolean resolveAsReportPlugin )
|
||||||
throws PluginVersionResolutionException, InvalidPluginException, PluginVersionNotFoundException
|
throws PluginVersionResolutionException, InvalidPluginException, PluginVersionNotFoundException
|
||||||
{
|
{
|
||||||
Settings settings = session.getSettings();
|
|
||||||
|
|
||||||
ArtifactRepository localRepository = session.getLocalRepository();
|
|
||||||
|
|
||||||
// first pass...if the plugin is specified in the pom, try to retrieve the version from there.
|
// first pass...if the plugin is specified in the pom, try to retrieve the version from there.
|
||||||
String version = getVersionFromPluginConfig( groupId, artifactId, project, resolveAsReportPlugin );
|
String version = getVersionFromPluginConfig( groupId, artifactId, project, resolveAsReportPlugin );
|
||||||
|
|
|
@ -16,9 +16,11 @@ package org.apache.maven.plugin.version;
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
import org.apache.maven.artifact.repository.ArtifactRepository;
|
||||||
import org.apache.maven.execution.MavenSession;
|
import org.apache.maven.execution.MavenSession;
|
||||||
import org.apache.maven.plugin.InvalidPluginException;
|
import org.apache.maven.plugin.InvalidPluginException;
|
||||||
import org.apache.maven.project.MavenProject;
|
import org.apache.maven.project.MavenProject;
|
||||||
|
import org.apache.maven.settings.Settings;
|
||||||
|
|
||||||
public interface PluginVersionManager
|
public interface PluginVersionManager
|
||||||
{
|
{
|
||||||
|
@ -27,7 +29,21 @@ public interface PluginVersionManager
|
||||||
String resolvePluginVersion( String groupId, String artifactId, MavenProject project, MavenSession session )
|
String resolvePluginVersion( String groupId, String artifactId, MavenProject project, MavenSession session )
|
||||||
throws PluginVersionResolutionException, InvalidPluginException, PluginVersionNotFoundException;
|
throws PluginVersionResolutionException, InvalidPluginException, PluginVersionNotFoundException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated
|
||||||
|
*/
|
||||||
|
String resolvePluginVersion( String groupId, String artifactId, MavenProject project, Settings settings,
|
||||||
|
ArtifactRepository localRepository )
|
||||||
|
throws PluginVersionResolutionException, InvalidPluginException, PluginVersionNotFoundException;
|
||||||
|
|
||||||
String resolveReportPluginVersion( String groupId, String artifactId, MavenProject project, MavenSession session )
|
String resolveReportPluginVersion( String groupId, String artifactId, MavenProject project, MavenSession session )
|
||||||
throws PluginVersionResolutionException, InvalidPluginException, PluginVersionNotFoundException;
|
throws PluginVersionResolutionException, InvalidPluginException, PluginVersionNotFoundException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated
|
||||||
|
*/
|
||||||
|
String resolveReportPluginVersion( String groupId, String artifactId, MavenProject project, Settings settings,
|
||||||
|
ArtifactRepository localRepository )
|
||||||
|
throws PluginVersionResolutionException, InvalidPluginException, PluginVersionNotFoundException;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue