> -Original Message-
> From: Dark Before Dawn [mailto:dark.before.d...@gmail.com]
> Sent: Friday, June 17, 2011 2:29 PM
> To: user@ant.apache.org
> Subject: Re: Programatic ANT: Export Build.xml
>
> Am 17.06.2011 17:13, schrieb Dominique Devienne:
> > On Thu, Jun 16, 2011 at
Am 17.06.2011 17:13, schrieb Dominique Devienne:
On Thu, Jun 16, 2011 at 11:31 PM, Dark Before Dawn
wrote:
I would like to use apache-ant-1.8.2 in JavaSE, to generate build.xml Files
dynamically. Is there a way to export a Project Object as xml File via
Writer/Stream?
Nope. And I don't think
On Thu, Jun 16, 2011 at 11:31 PM, Dark Before Dawn
wrote:
> I would like to use apache-ant-1.8.2 in JavaSE, to generate build.xml Files
> dynamically. Is there a way to export a Project Object as xml File via
> Writer/Stream?
Nope. And I don't think it's possible (or easy) to do either, at least
Hi there,
I would like to use apache-ant-1.8.2 in JavaSE, to generate build.xml
Files dynamically. Is there a way to export a Project Object as xml File
via Writer/Stream?
CodeSnippet:
Project p = new Project();
p.setName("test");
p.setDefault("test");
Target