I figured out what was going on. You were correct it was the classloaders.
I was running the tasks as class files that I was including at run time in
my script.
I put the offending code into a jar and put it into my ant/lib directory and
everything worked perfectly.
Don
-Original Message-
Not knowing how your development procedure is laid out I can only comment on
how I do it.
First off I separate code as best I can into cohesive projects being very
careful about cross project
dependencies. Thus I don't have to compile everything all the time unless I
am doing a release.
When I wan
> -Original Message-
> From: Clifton C. Craig [mailto:[EMAIL PROTECTED]
>
> I have an issue where I run over a .java file with an inner
> class and the inner class is not generated. My build process involves a
> lot of Java comppiles and I'm not sure exactly where things get out of
> step
--- Matt Benson <[EMAIL PROTECTED]> wrote:
> To do this with pure Ant, see the
> task.
ack, lemme take that back... since pathconvert doesn't
(yet) support mappers, you're not going to get what
you want that way...
__
Do you Yahoo!?
Yahoo! SiteBuilder - Free web
Yes, Line them up in the command attribute separated by a ";".
Multiple command attributes are not supported.
-Rob Anderson
-Original Message-
From: Jacob, Anil - MWT [mailto:[EMAIL PROTECTED]
Sent: Friday, January 23, 2004 10:41 AM
To: Ant Users (E-mail)
Subject: multiple commands w
To do this with pure Ant, see the task.
-Matt
__
Do you Yahoo!?
Yahoo! SiteBuilder - Free web site building tool. Try it!
http://webhosting.yahoo.com/ps/sb/
-
To unsubscribe, e-mail: [EMAIL PROTE
Whoops,
I neglected one important piece. You have to use propertyregex from Ant
contrib to do a replace of all semis. See the following snippet from our
actual build:
includes="*.jar" excludes="etc.jar"/>
regexp="[;]" replace=" "/>
I store the files
If your target system is Linux try:
That's how I do it at least.
Clifton C. Craig, Software Engineer
Intelligent Computer Systems - A Division of GBG
2101 Embassy Drive
Lancaster, PA 17603
Phone: 717-295-7977 ext. 621
Fax: 717-295-7683
[EMAIL PROTECTED]
[EMAIL PROTECTED]
Thanks Craig, Unfortunately it returns file names delimited by ";".
Is there a way to get the file name with relative path?
Also I see that the classpath entries in manifest file should be space delimited.
Here is the sample of what I did.
This prints jdom.jar;log4j-1.2.8.jar inste