The following patch updates Magic's GumpTask to generate dependency
declarations for all types of projects (not just jar files).  This
change correct the problem with the examples project which was
attempting to reference the blck generated by a project that Gump has
not build (because the dependency was not declared).

Stephen.


Index: src/main/org/apache/avalon/tools/tasks/GumpTask.java
===================================================================
--- src/main/org/apache/avalon/tools/tasks/GumpTask.java
(revision 37083)
+++ src/main/org/apache/avalon/tools/tasks/GumpTask.java        (working
copy)
@@ -624,15 +624,7 @@
         }
         else
         {
-            String type = resource.getInfo().getType();
-            if( "jar".equals( type ) )
-            {
-                return false;
-            }
-            else
-            {
-                return true;
-            }
+            return false;
         }
     }





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

Reply via email to