From d6e04a3d495562e189a1d7ff847fec6d6901a80a Mon Sep 17 00:00:00 2001 From: Olivier Lamy Date: Sun, 6 Jun 2010 13:55:06 +0000 Subject: [PATCH] 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 --- .../java/org/apache/maven/lifecycle/LifecycleExecutor.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/maven-core/src/main/java/org/apache/maven/lifecycle/LifecycleExecutor.java b/maven-core/src/main/java/org/apache/maven/lifecycle/LifecycleExecutor.java index 60c8d87642..aca6965448 100644 --- a/maven-core/src/main/java/org/apache/maven/lifecycle/LifecycleExecutor.java +++ b/maven-core/src/main/java/org/apache/maven/lifecycle/LifecycleExecutor.java @@ -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 executeForkedExecutions( MojoExecution mojoExecution, MavenSession session ) + // used by the site plugin 3.x + List executeForkedExecutions( MojoExecution mojoExecution, MavenSession session ) throws LifecycleExecutionException;