Re: nested static class causing junit failure

2010-06-09 Thread videophool
I just found the answer to my own question: mark the class with @Ignore My apologies. videophool wrote: > > In some junit code, I have a nested class that is private and static. > This class implements an interface that is used by the code under test. > The junit tests work fin

nested static class causing junit failure

2010-06-09 Thread videophool
In some junit code, I have a nested class that is private and static. This class implements an interface that is used by the code under test. The junit tests work fine in Eclipse, but fail under ant. The failures are: MyTestClass$NestedClass "Caused an ERROR Test class should have public

Re: using subant with multiple projects with specific build order

2010-06-03 Thread videophool
Here is the solution:

Re: using subant with multiple projects with specific build order

2010-06-03 Thread videophool
Jeffrey E Care wrote: > > videophool wrote on 06/03/2010 02:40:12 PM: > >> > IIRC you can use a filelist to enforce ordering. >> > >> >> Any details or sample code would be greatly appreciated. Especially >> declaring the filelist once and usi

Re: using subant with multiple projects with specific build order

2010-06-03 Thread videophool
Jeffrey E Care wrote: > > videophool wrote on 06/03/2010 02:16:30 PM: > > IIRC you can use a filelist to enforce ordering. > Any details or sample code would be greatly appreciated. Especially declaring the filelist once and using it for multiple targets. Thanks. -- View

using subant with multiple projects with specific build order

2010-06-03 Thread videophool
I am new to ant, and am setting up a master build.xml. There are several projects (each with build.xml) that the master will build, and there is a dependency chain so that they must be built in a specific order. All of the subant examples that I find use dirset which does not allow control of th