jvanzyl     2004/04/02 08:14:33

  Modified:    maven-core/src/main/java/org/apache/maven/plugin/descriptor
                        GoalDescriptor.java
  Log:
  o state whether the goal needs a project present, we will default to true
    but in many cases with things like "maven --setup xstream" there is no
    project until we are setup. Same goes for things like genapp.
  
  Revision  Changes    Path
  1.5       +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.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- GoalDescriptor.java       2 Apr 2004 00:13:07 -0000       1.4
  +++ GoalDescriptor.java       2 Apr 2004 16:14:33 -0000       1.5
  @@ -39,6 +39,8 @@
   
       private boolean requiresDependencyResolution = true;
   
  +    private boolean requiresProject = true;
  +
       public String getName()
       {
           return name;
  
  
  

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

Reply via email to