You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ant.apache.org by "dave.smith" <ge...@gmail.com> on 2008/08/12 20:45:24 UTC

Won't Build: NoClassDefFoundError

What am I missing?  I have serializer.jar in /usr/share/ant/lib, but I keep
getting this error when I run ant junit:

junit:

BUILD FAILED
java.lang.NoClassDefFoundError: org/apache/xml/serializer/SerializerTrace

-- 
View this message in context: http://www.nabble.com/Won%27t-Build%3A--NoClassDefFoundError-tp18949641p18949641.html
Sent from the Ant - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org


sshexec and logging

Posted by Hans Schwaebli <ha...@yahoo.com>.
I do Ant scripts for building and testing a application. Builds are done with CruiseControl on a Unix machine. I have to run the tests on windows, which is why in the build script the stuff is checked out on windows and build there. But the controlling Ant scripts are on the Unix machine.

So I need SSHEXEC task to call ant from the Unix machine on the Windows machine. This works so far, but there is a issue with logging.

If I execute with SSHEXEC then its kind of black hole concerning logging from the viewpoint of CruiseControl. I cannot see what happens live because the scripts are run elsewhere. I can redirect the output to a file. But on windows it flushes it only when the target is finished. If something gets stuck, I would see no logging. Of course I could use tee.exe from Cygwin and log it on console too. But do you smell the code smell? It is also ugly because the log files need to be copied from one computer to another with SCP task. All this seems much complicated for just simply wanting to log a bit which one normaly gets for free.

The SSHEXEC task has a output property. But I don't get the actual remote output but much less or nothing.

How can this be solved? The best would be if I can run remote commands and get live logging inside the controlling Ant scripts so that I can see what is happening while the build runs on the CruiseControl console or on its Dashboard.

I hope I have described the issue so that it becomes clear, what my problems are.



      

RE: Won't Build: NoClassDefFoundError

Posted by Martin Gainty <mg...@hotmail.com>.
is serializer.jar on your system CLASSPATH ?

set CLASSPATH=/FolderWhichContainsClasspath;$CLASSPATH
export CLASSPATH

Martin 
______________________________________________ 
Disclaimer and confidentiality note 
Everything in this e-mail and any attachments relates to the official business of Sender. This transmission is of a confidential nature and Sender does not endorse distribution to any party other than intended recipient. Sender does not necessarily endorse content contained within this transmission. 


> Date: Tue, 12 Aug 2008 11:45:24 -0700
> From: germ32@gmail.com
> To: user@ant.apache.org
> Subject: Won't Build:  NoClassDefFoundError
> 
> 
> What am I missing?  I have serializer.jar in /usr/share/ant/lib, but I keep
> getting this error when I run ant junit:
> 
> junit:
> 
> BUILD FAILED
> java.lang.NoClassDefFoundError: org/apache/xml/serializer/SerializerTrace
> 
> -- 
> View this message in context: http://www.nabble.com/Won%27t-Build%3A--NoClassDefFoundError-tp18949641p18949641.html
> Sent from the Ant - Users mailing list archive at Nabble.com.
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> For additional commands, e-mail: user-help@ant.apache.org
> 

_________________________________________________________________
Get more from your digital life.  Find out how.
http://www.windowslive.com/default.html?ocid=TXT_TAGLM_WL_Home2_082008

Re: Won't Build: NoClassDefFoundError

Posted by "Scot P. Floess" <fl...@mindspring.com>.
That's really odd...  I'm somewhat at a loss...  I'll have to think about 
this...

Is there maybe another dependency not met?  Some other jat one requires 
for that class?

On Tue, 12 Aug 2008, dave.smith wrote:

>
> I am able to jar tf serializer.jar from the user that is running ant.
>
> /usr/share/ant/lib has only serializer.jar
> which ant ==> /usr/bin/ant
> echo $ANT_HOME ==> /usr/share/ant
>
> I also tried running ant with ant -lib /usr/share/ant/lib/ junit.  I got the
> same error.
>
> Thanks again,
> Dave
>
>
> Scot P. Floess wrote:
>>
>> Is your ANT_HOME = /usr/share/ant
>>
>> On Tue, 12 Aug 2008, dave.smith wrote:
>>
>>>
>>> Hi Scot,
>>>
>>> Thanks for your fast reply.
>>>
>>> 1)  Yes, I see SerializerTrace.class in there
>>> 2)  Yes, it has 0644 permissions
>>> 3)  No, but I exported it as /usr/share/ant and it still did not work.
>>>
>>>
>>> Scot P. Floess wrote:
>>>>
>>>>
>>>> So, couple of questions...
>>>>
>>>> 1) Is SerializerTrace actually in that jar?
>>>> 2) Are the permissions such that that jar is readable by you as a user?
>>>> 3) IS your ANT_HOME /usr/share/ant ?
>>>>
>>>> On Tue, 12 Aug 2008, dave.smith wrote:
>>>>
>>>>>
>>>>> What am I missing?  I have serializer.jar in /usr/share/ant/lib, but I
>>>>> keep
>>>>> getting this error when I run ant junit:
>>>>>
>>>>> junit:
>>>>>
>>>>> BUILD FAILED
>>>>> java.lang.NoClassDefFoundError:
>>>>> org/apache/xml/serializer/SerializerTrace
>>>>>
>>>>> --
>>>>> View this message in context:
>>>>> http://www.nabble.com/Won%27t-Build%3A--NoClassDefFoundError-tp18949641p18949641.html
>>>>> Sent from the Ant - Users mailing list archive at Nabble.com.
>>>>>
>>>>>
>>>>> ---------------------------------------------------------------------
>>>>> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
>>>>> For additional commands, e-mail: user-help@ant.apache.org
>>>>>
>>>>>
>>>>
>>>> Scot P. Floess
>>>> 27 Lake Royale
>>>> Louisburg, NC  27549
>>>>
>>>> 252-478-8087 (Home)
>>>> 919-754-4592 (Work)
>>>>
>>>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>>>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>>>
>>>> Architect Keros          http://sourceforge.net/projects/keros
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
>>>> For additional commands, e-mail: user-help@ant.apache.org
>>>>
>>>>
>>>>
>>>
>>> --
>>> View this message in context:
>>> http://www.nabble.com/Won%27t-Build%3A--NoClassDefFoundError-tp18949641p18950819.html
>>> Sent from the Ant - Users mailing list archive at Nabble.com.
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
>>> For additional commands, e-mail: user-help@ant.apache.org
>>>
>>>
>>
>> Scot P. Floess
>> 27 Lake Royale
>> Louisburg, NC  27549
>>
>> 252-478-8087 (Home)
>> 919-754-4592 (Work)
>>
>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>
>> Architect Keros          http://sourceforge.net/projects/keros
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
>> For additional commands, e-mail: user-help@ant.apache.org
>>
>>
>>
>
> -- 
> View this message in context: http://www.nabble.com/Won%27t-Build%3A--NoClassDefFoundError-tp18949641p18951262.html
> Sent from the Ant - Users mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> For additional commands, e-mail: user-help@ant.apache.org
>
>

Scot P. Floess
27 Lake Royale
Louisburg, NC  27549

252-478-8087 (Home)
919-754-4592 (Work)

Chief Architect JPlate   http://sourceforge.net/projects/jplate
Chief Architect JavaPIM  http://sourceforge.net/projects/javapim

Architect Keros          http://sourceforge.net/projects/keros

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org


Re: Won't Build: NoClassDefFoundError

Posted by "dave.smith" <ge...@gmail.com>.
I am able to jar tf serializer.jar from the user that is running ant.

/usr/share/ant/lib has only serializer.jar
which ant ==> /usr/bin/ant
echo $ANT_HOME ==> /usr/share/ant

I also tried running ant with ant -lib /usr/share/ant/lib/ junit.  I got the
same error.

Thanks again,
Dave


Scot P. Floess wrote:
> 
> Is your ANT_HOME = /usr/share/ant
> 
> On Tue, 12 Aug 2008, dave.smith wrote:
> 
>>
>> Hi Scot,
>>
>> Thanks for your fast reply.
>>
>> 1)  Yes, I see SerializerTrace.class in there
>> 2)  Yes, it has 0644 permissions
>> 3)  No, but I exported it as /usr/share/ant and it still did not work.
>>
>>
>> Scot P. Floess wrote:
>>>
>>>
>>> So, couple of questions...
>>>
>>> 1) Is SerializerTrace actually in that jar?
>>> 2) Are the permissions such that that jar is readable by you as a user?
>>> 3) IS your ANT_HOME /usr/share/ant ?
>>>
>>> On Tue, 12 Aug 2008, dave.smith wrote:
>>>
>>>>
>>>> What am I missing?  I have serializer.jar in /usr/share/ant/lib, but I
>>>> keep
>>>> getting this error when I run ant junit:
>>>>
>>>> junit:
>>>>
>>>> BUILD FAILED
>>>> java.lang.NoClassDefFoundError:
>>>> org/apache/xml/serializer/SerializerTrace
>>>>
>>>> --
>>>> View this message in context:
>>>> http://www.nabble.com/Won%27t-Build%3A--NoClassDefFoundError-tp18949641p18949641.html
>>>> Sent from the Ant - Users mailing list archive at Nabble.com.
>>>>
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
>>>> For additional commands, e-mail: user-help@ant.apache.org
>>>>
>>>>
>>>
>>> Scot P. Floess
>>> 27 Lake Royale
>>> Louisburg, NC  27549
>>>
>>> 252-478-8087 (Home)
>>> 919-754-4592 (Work)
>>>
>>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>>
>>> Architect Keros          http://sourceforge.net/projects/keros
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
>>> For additional commands, e-mail: user-help@ant.apache.org
>>>
>>>
>>>
>>
>> -- 
>> View this message in context:
>> http://www.nabble.com/Won%27t-Build%3A--NoClassDefFoundError-tp18949641p18950819.html
>> Sent from the Ant - Users mailing list archive at Nabble.com.
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
>> For additional commands, e-mail: user-help@ant.apache.org
>>
>>
> 
> Scot P. Floess
> 27 Lake Royale
> Louisburg, NC  27549
> 
> 252-478-8087 (Home)
> 919-754-4592 (Work)
> 
> Chief Architect JPlate   http://sourceforge.net/projects/jplate
> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
> 
> Architect Keros          http://sourceforge.net/projects/keros
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> For additional commands, e-mail: user-help@ant.apache.org
> 
> 
> 

-- 
View this message in context: http://www.nabble.com/Won%27t-Build%3A--NoClassDefFoundError-tp18949641p18951262.html
Sent from the Ant - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org


Re: Won't Build: NoClassDefFoundError

Posted by "Scot P. Floess" <fl...@mindspring.com>.
Is your ANT_HOME = /usr/share/ant

On Tue, 12 Aug 2008, dave.smith wrote:

>
> Hi Scot,
>
> Thanks for your fast reply.
>
> 1)  Yes, I see SerializerTrace.class in there
> 2)  Yes, it has 0644 permissions
> 3)  No, but I exported it as /usr/share/ant and it still did not work.
>
>
> Scot P. Floess wrote:
>>
>>
>> So, couple of questions...
>>
>> 1) Is SerializerTrace actually in that jar?
>> 2) Are the permissions such that that jar is readable by you as a user?
>> 3) IS your ANT_HOME /usr/share/ant ?
>>
>> On Tue, 12 Aug 2008, dave.smith wrote:
>>
>>>
>>> What am I missing?  I have serializer.jar in /usr/share/ant/lib, but I
>>> keep
>>> getting this error when I run ant junit:
>>>
>>> junit:
>>>
>>> BUILD FAILED
>>> java.lang.NoClassDefFoundError: org/apache/xml/serializer/SerializerTrace
>>>
>>> --
>>> View this message in context:
>>> http://www.nabble.com/Won%27t-Build%3A--NoClassDefFoundError-tp18949641p18949641.html
>>> Sent from the Ant - Users mailing list archive at Nabble.com.
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
>>> For additional commands, e-mail: user-help@ant.apache.org
>>>
>>>
>>
>> Scot P. Floess
>> 27 Lake Royale
>> Louisburg, NC  27549
>>
>> 252-478-8087 (Home)
>> 919-754-4592 (Work)
>>
>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>
>> Architect Keros          http://sourceforge.net/projects/keros
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
>> For additional commands, e-mail: user-help@ant.apache.org
>>
>>
>>
>
> -- 
> View this message in context: http://www.nabble.com/Won%27t-Build%3A--NoClassDefFoundError-tp18949641p18950819.html
> Sent from the Ant - Users mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> For additional commands, e-mail: user-help@ant.apache.org
>
>

Scot P. Floess
27 Lake Royale
Louisburg, NC  27549

252-478-8087 (Home)
919-754-4592 (Work)

Chief Architect JPlate   http://sourceforge.net/projects/jplate
Chief Architect JavaPIM  http://sourceforge.net/projects/javapim

Architect Keros          http://sourceforge.net/projects/keros

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org


Re: Won't Build: NoClassDefFoundError

Posted by "dave.smith" <ge...@gmail.com>.
Hi Scot,

Thanks for your fast reply.

1)  Yes, I see SerializerTrace.class in there
2)  Yes, it has 0644 permissions
3)  No, but I exported it as /usr/share/ant and it still did not work.


Scot P. Floess wrote:
> 
> 
> So, couple of questions...
> 
> 1) Is SerializerTrace actually in that jar?
> 2) Are the permissions such that that jar is readable by you as a user?
> 3) IS your ANT_HOME /usr/share/ant ?
> 
> On Tue, 12 Aug 2008, dave.smith wrote:
> 
>>
>> What am I missing?  I have serializer.jar in /usr/share/ant/lib, but I
>> keep
>> getting this error when I run ant junit:
>>
>> junit:
>>
>> BUILD FAILED
>> java.lang.NoClassDefFoundError: org/apache/xml/serializer/SerializerTrace
>>
>> -- 
>> View this message in context:
>> http://www.nabble.com/Won%27t-Build%3A--NoClassDefFoundError-tp18949641p18949641.html
>> Sent from the Ant - Users mailing list archive at Nabble.com.
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
>> For additional commands, e-mail: user-help@ant.apache.org
>>
>>
> 
> Scot P. Floess
> 27 Lake Royale
> Louisburg, NC  27549
> 
> 252-478-8087 (Home)
> 919-754-4592 (Work)
> 
> Chief Architect JPlate   http://sourceforge.net/projects/jplate
> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
> 
> Architect Keros          http://sourceforge.net/projects/keros
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> For additional commands, e-mail: user-help@ant.apache.org
> 
> 
> 

-- 
View this message in context: http://www.nabble.com/Won%27t-Build%3A--NoClassDefFoundError-tp18949641p18950819.html
Sent from the Ant - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org


RE: Won't Build: NoClassDefFoundError

Posted by "Scot P. Floess" <fl...@mindspring.com>.
Ah OK.  Wasn't sure but had to ask :)

Still begs the question...can the user read from the jar (permissions)...

Or, is that jar in the classpath correctly?  For example in $ANT_HOME/lib

Or...is he using the -lib option?

On Tue, 12 Aug 2008, Martin Gainty wrote:

>
> Scott-
>
> serializer.jar on classpath
> from xalan
> http://xml.apache.org/xalan-j/
>
> HTH
> Martin
> ______________________________________________
> Disclaimer and confidentiality note
> Everything in this e-mail and any attachments relates to the official business of Sender. This transmission is of a confidential nature and Sender does not endorse distribution to any party other than intended recipient. Sender does not necessarily endorse content contained within this transmission.
>
>
>> Date: Tue, 12 Aug 2008 14:53:10 -0400
>> From: floess@mindspring.com
>> To: user@ant.apache.org
>> Subject: Re: Won't Build:  NoClassDefFoundError
>>
>>
>> So, couple of questions...
>>
>> 1) Is SerializerTrace actually in that jar?
>> 2) Are the permissions such that that jar is readable by you as a user?
>> 3) IS your ANT_HOME /usr/share/ant ?
>>
>> On Tue, 12 Aug 2008, dave.smith wrote:
>>
>>>
>>> What am I missing?  I have serializer.jar in /usr/share/ant/lib, but I keep
>>> getting this error when I run ant junit:
>>>
>>> junit:
>>>
>>> BUILD FAILED
>>> java.lang.NoClassDefFoundError: org/apache/xml/serializer/SerializerTrace
>>>
>>> --
>>> View this message in context: http://www.nabble.com/Won%27t-Build%3A--NoClassDefFoundError-tp18949641p18949641.html
>>> Sent from the Ant - Users mailing list archive at Nabble.com.
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
>>> For additional commands, e-mail: user-help@ant.apache.org
>>>
>>>
>>
>> Scot P. Floess
>> 27 Lake Royale
>> Louisburg, NC  27549
>>
>> 252-478-8087 (Home)
>> 919-754-4592 (Work)
>>
>> Chief Architect JPlate   http://sourceforge.net/projects/jplate
>> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
>>
>> Architect Keros          http://sourceforge.net/projects/keros
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
>> For additional commands, e-mail: user-help@ant.apache.org
>>
>
> _________________________________________________________________
> Get more from your digital life.  Find out how.
> http://www.windowslive.com/default.html?ocid=TXT_TAGLM_WL_Home2_082008

Scot P. Floess
27 Lake Royale
Louisburg, NC  27549

252-478-8087 (Home)
919-754-4592 (Work)

Chief Architect JPlate   http://sourceforge.net/projects/jplate
Chief Architect JavaPIM  http://sourceforge.net/projects/javapim

Architect Keros          http://sourceforge.net/projects/keros

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org


RE: Won't Build: NoClassDefFoundError

Posted by Martin Gainty <mg...@hotmail.com>.
Scott-

serializer.jar on classpath
from xalan
http://xml.apache.org/xalan-j/

HTH
Martin 
______________________________________________ 
Disclaimer and confidentiality note 
Everything in this e-mail and any attachments relates to the official business of Sender. This transmission is of a confidential nature and Sender does not endorse distribution to any party other than intended recipient. Sender does not necessarily endorse content contained within this transmission. 


> Date: Tue, 12 Aug 2008 14:53:10 -0400
> From: floess@mindspring.com
> To: user@ant.apache.org
> Subject: Re: Won't Build:  NoClassDefFoundError
> 
> 
> So, couple of questions...
> 
> 1) Is SerializerTrace actually in that jar?
> 2) Are the permissions such that that jar is readable by you as a user?
> 3) IS your ANT_HOME /usr/share/ant ?
> 
> On Tue, 12 Aug 2008, dave.smith wrote:
> 
> >
> > What am I missing?  I have serializer.jar in /usr/share/ant/lib, but I keep
> > getting this error when I run ant junit:
> >
> > junit:
> >
> > BUILD FAILED
> > java.lang.NoClassDefFoundError: org/apache/xml/serializer/SerializerTrace
> >
> > -- 
> > View this message in context: http://www.nabble.com/Won%27t-Build%3A--NoClassDefFoundError-tp18949641p18949641.html
> > Sent from the Ant - Users mailing list archive at Nabble.com.
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> > For additional commands, e-mail: user-help@ant.apache.org
> >
> >
> 
> Scot P. Floess
> 27 Lake Royale
> Louisburg, NC  27549
> 
> 252-478-8087 (Home)
> 919-754-4592 (Work)
> 
> Chief Architect JPlate   http://sourceforge.net/projects/jplate
> Chief Architect JavaPIM  http://sourceforge.net/projects/javapim
> 
> Architect Keros          http://sourceforge.net/projects/keros
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> For additional commands, e-mail: user-help@ant.apache.org
> 

_________________________________________________________________
Get more from your digital life.  Find out how.
http://www.windowslive.com/default.html?ocid=TXT_TAGLM_WL_Home2_082008

Re: Won't Build: NoClassDefFoundError

Posted by "Scot P. Floess" <fl...@mindspring.com>.
So, couple of questions...

1) Is SerializerTrace actually in that jar?
2) Are the permissions such that that jar is readable by you as a user?
3) IS your ANT_HOME /usr/share/ant ?

On Tue, 12 Aug 2008, dave.smith wrote:

>
> What am I missing?  I have serializer.jar in /usr/share/ant/lib, but I keep
> getting this error when I run ant junit:
>
> junit:
>
> BUILD FAILED
> java.lang.NoClassDefFoundError: org/apache/xml/serializer/SerializerTrace
>
> -- 
> View this message in context: http://www.nabble.com/Won%27t-Build%3A--NoClassDefFoundError-tp18949641p18949641.html
> Sent from the Ant - Users mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> For additional commands, e-mail: user-help@ant.apache.org
>
>

Scot P. Floess
27 Lake Royale
Louisburg, NC  27549

252-478-8087 (Home)
919-754-4592 (Work)

Chief Architect JPlate   http://sourceforge.net/projects/jplate
Chief Architect JavaPIM  http://sourceforge.net/projects/javapim

Architect Keros          http://sourceforge.net/projects/keros

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org