fork ant fop task with its own heap?

2004-02-06 Thread S. Alan Ezust
Is it possible to fork an ANT FOP task and give it a heap size of its own? I 
can't find a fork= attribute in taskdef, target or fop. Do I put this 
somewhere else?

I don't want FOP eating up the memory of my development environment when I run 
it through Jedit/Antelope. 

-- 
S. Alan Ezust
Ottawa, Ontario, Canada
http://cartan.cas.suffolk.edu/~sae


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



Re: fork ant fop task with its own heap?

2004-02-06 Thread J.Pietschmann
S. Alan Ezust wrote:
Is it possible to fork an ANT FOP task and give it a heap size of its own? I 
can't find a fork= attribute in taskdef, target or fop. Do I put this 
somewhere else?
You'll probably want to look at the java task. Check
the Ant docs for details, and you likely get more hints
on the Ant user list.
J.Pietschmann
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: fork ant fop task with its own heap?

2004-02-06 Thread Glen Mazza
Something like this may be of help--this is what I do
for running FOP within the JEdit IDE:

target name=run
   java classname=MyAppWithFOPEmbedded fork=true
  classpath refid=.classpath /
   /java
/target

Glen

--- J.Pietschmann [EMAIL PROTECTED] wrote:
 S. Alan Ezust wrote:
 
  Is it possible to fork an ANT FOP task and give it
 a heap size of its own? I 
  can't find a fork= attribute in taskdef,
 target or fop. Do I put this 
  somewhere else?
 
 You'll probably want to look at the java task.
 Check
 the Ant docs for details, and you likely get more
 hints
 on the Ant user list.
 
 J.Pietschmann
 
 

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


__
Do you Yahoo!?
Yahoo! Finance: Get your refund fast by filing online.
http://taxes.yahoo.com/filing.html

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