I'm afraid that's my fault. When I submitted my patches for the new  
ant task about two weeks ago, I accidentally sent the wrong version  
of org/objectstyle/woproject/ant/FrameworkSet.java At that time I was  
experimenting with allowing WOApps to be part of framework sets and  
grabbed the experimental version of that file. I didn't notice my  
mistake until now because I was happily using a different build of  
woproject.jar. To fix this issue, restore the original (revision 1.5)  
implementation of FrameworkSet.findJars():
     public File[] findJars(String frameworkDir) {
         if (!testIfCondition())
             return new File[] {};
         String jarDirName = frameworkDir
                 + File.separator
                 + "Resources"
                 + File.separator
                 + "Java";
         File jarDir = new File(getDir(this.getProject()), jarDirName);
         if (!jarDir.isDirectory()) {
             return null;
         }
         File[] finalFiles = jarDir.listFiles(new JarFilter());
         return finalFiles;
     }
Or use the attached file.
I'm very sorry about this and hope I didn't waste too much of  
everyone's time!
Christian
On Sep 4, 2005, at 15:11, Greg wrote:
> it's broken. It has been broken for about a week. I just run ant  
> from the command line and it seems to work. I think I have older  
> woproject.jar in my ant lib.
>
> Greg
>
> On 04/09/2005, at 2:43 PM, Mike Schrag wrote:
>> I just did a dist build with a brand new project created w/ the  
>> HEAD build and my classpath files were not updated to include my  
>> wolocalroot framework jars ... Can someone else try this out and  
>> see if this is a fluke or if it's just broken right now?
>>
>> ms
This archive was generated by hypermail 2.0.0 : Mon Sep 05 2005 - 03:46:05 EDT