add comment to prevent accidental delete of those methods :-)

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-3/trunk@951862 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2010-06-06 13:55:06 +00:00
parent 93536dd82c
commit d6e04a3d49
1 changed files with 4 additions and 2 deletions

View File

@ -73,13 +73,15 @@ public interface LifecycleExecutor
void execute( MavenSession session );
public void calculateForkedExecutions( MojoExecution mojoExecution, MavenSession session )
// used by the site plugin 3.x
void calculateForkedExecutions( MojoExecution mojoExecution, MavenSession session )
throws MojoNotFoundException, PluginNotFoundException, PluginResolutionException,
PluginDescriptorParsingException, NoPluginFoundForPrefixException, InvalidPluginDescriptorException,
LifecyclePhaseNotFoundException, LifecycleNotFoundException, PluginVersionResolutionException;
public List<MavenProject> executeForkedExecutions( MojoExecution mojoExecution, MavenSession session )
// used by the site plugin 3.x
List<MavenProject> executeForkedExecutions( MojoExecution mojoExecution, MavenSession session )
throws LifecycleExecutionException;