o changing signature to say exactly what it's doing

git-svn-id: https://svn.apache.org/repos/asf/maven/components/branches/MNG-2766@769849 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2009-04-29 17:35:41 +00:00
parent 38bd51b1a7
commit 2fabaa365b
2 changed files with 2 additions and 2 deletions

View File

@ -473,7 +473,7 @@ public List<String> getLifecyclePhases()
// fully populated Plugin objects, including executions with goals and default configuration taken
// from the plugin.xml inside a plugin.
//
public Set<Plugin> getPluginsBoundByDefaultToLifecycles( String packaging )
public Set<Plugin> getPluginsBoundByDefaultToAllLifecycles( String packaging )
{
Set<Plugin> plugins = new LinkedHashSet<Plugin>();

View File

@ -59,7 +59,7 @@ List<MojoDescriptor> calculateLifecyclePlan( String lifecyclePhase, MavenSession
// We need to know the specific version so that we can lookup the right version of the plugin descriptor
// which tells us what the default configuration is.
//
Set<Plugin> getPluginsBoundByDefaultToLifecycles( String packaging );
Set<Plugin> getPluginsBoundByDefaultToAllLifecycles( String packaging );
// Given a set of {@link org.apache.maven.Plugin} objects where the GAV is set we can lookup the plugin
// descriptor and populate the default configuration.