dion 02/05/22 17:39:27
Modified: src/java/org/apache/maven/executor ProjectExecutor.java
Log:
no message
Revision Changes Path
1.4 +8 -7
jakarta-turbine-maven/src/java/org/apache/maven/executor/ProjectExecutor.java
Index: ProjectExecutor.java
===================================================================
RCS file:
/home/cvs/jakarta-turbine-maven/src/java/org/apache/maven/executor/ProjectExecutor.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ProjectExecutor.java 20 Apr 2002 00:17:58 -0000 1.3
+++ ProjectExecutor.java 23 May 2002 00:39:27 -0000 1.4
@@ -56,13 +56,9 @@
import java.io.File;
-import org.apache.tools.ant.BuildException;
-
import org.apache.maven.MavenUtils;
import org.apache.maven.project.Project;
-import org.apache.commons.xo.Mapper;
-
/**
* An executor that uses the Template Method pattern to alleviate the
* burden subclasses having to create the Maven project object and
@@ -70,7 +66,8 @@
* in any desired fashion.
*
* @author <a href="[EMAIL PROTECTED]">Jason van Zyl</a>
- * @version $Id: ProjectExecutor.java,v 1.3 2002/04/20 00:17:58 kaz Exp $
+ * @author <a href="[EMAIL PROTECTED]">Vincent Massol</a>
+ * @version $Id: ProjectExecutor.java,v 1.4 2002/05/23 00:39:27 dion Exp $
*/
public abstract class ProjectExecutor
extends AbstractExecutor
@@ -129,7 +126,9 @@
}
/**
- * Load the project using the set project descriptor
+ * Load the project using the set project descriptor.
+ *
+ * @throws Exception
*/
protected void loadMavenProject()
throws Exception
@@ -145,7 +144,7 @@
/**
* Execute the task.
*
- * @throws BuildException
+ * @throws Exception
*/
public void execute()
throws Exception
@@ -157,6 +156,8 @@
/**
* Method to override in subclasses that make use of the maven project
* object created by getProject()
+ *
+ * @throws Exception
*/
public abstract void doExecute()
throws Exception;
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>