jvanzyl     2004/04/01 16:13:07

  Modified:    maven-core/src/main/java/org/apache/maven/plugin/descriptor
                        GoalDescriptor.java
  Log:
  o does the goal require dependency resolution in order to execute, by
    default we will assume yes. But for things like "clean" we don't.
  
  Revision  Changes    Path
  1.4       +3 -1      
maven-components/maven-core/src/main/java/org/apache/maven/plugin/descriptor/GoalDescriptor.java
  
  Index: GoalDescriptor.java
  ===================================================================
  RCS file: 
/home/cvs/maven-components/maven-core/src/main/java/org/apache/maven/plugin/descriptor/GoalDescriptor.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- GoalDescriptor.java       21 Mar 2004 00:33:17 -0000      1.3
  +++ GoalDescriptor.java       2 Apr 2004 00:13:07 -0000       1.4
  @@ -37,6 +37,8 @@
   
       private MethodDescriptor method;
   
  +    private boolean requiresDependencyResolution = true;
  +
       public String getName()
       {
           return name;
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to