jvanzyl 02/04/18 08:23:16
Modified: src/java/org/apache/maven ProjectVerify.java
Log:
Changing access modifier and adding javadoc blurb.
Revision Changes Path
1.2 +6 -2
jakarta-turbine-maven/src/java/org/apache/maven/ProjectVerify.java
Index: ProjectVerify.java
===================================================================
RCS file:
/home/cvs/jakarta-turbine-maven/src/java/org/apache/maven/ProjectVerify.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ProjectVerify.java 18 Apr 2002 15:21:26 -0000 1.1
+++ ProjectVerify.java 18 Apr 2002 15:23:16 -0000 1.2
@@ -72,7 +72,7 @@
* and make sure they are all here before trying to compile.
*
* @author <a href="[EMAIL PROTECTED]">Jason van Zyl</a>
- * @version $Id: ProjectVerify.java,v 1.1 2002/04/18 15:21:26 jvanzyl Exp $
+ * @version $Id: ProjectVerify.java,v 1.2 2002/04/18 15:23:16 jvanzyl Exp $
*/
public class ProjectVerify
extends ProjectExecutor
@@ -122,7 +122,11 @@
verifyDependencies();
}
- public void verifyDependencies()
+ /**
+ * Check to see that all dependencies are present and if they are
+ * not then download them.
+ */
+ private void verifyDependencies()
throws Exception
{
for (Iterator i = mavenProject.getDependencies().iterator(); i.hasNext();)