AW: Invoking Ant programmatically with an Java-String

2009-03-09 Thread Jan Bartel
Hi Stefan and Gilbert, thank you for your help :-) >Not easily. Ant's projecthelper implementation wants to read from a >File and you really need a file when you want to resolve relative >paths and so on.:t > I suppose reimplementing the projecthelper would fit my requirements . Isn't there a

Invoking Ant programmatically by an String

2009-03-07 Thread Jan Bartel
Hi everybody, I try to invoke ant programmatically. At the moment I use the following code to invoke ant from a build.xml: File buildFile = new File("build.xml"); Project p = new Project(); p.setUserProperty("ant.file", buildFile.getAbsolutePath()); p.init(); ProjectHelper he

Invoking Ant programmatically with an Java-String

2009-03-07 Thread Jan Bartel
Hi everybody, I try to invoke ant programmatically. At the moment I use the following code to invoke ant from a build.xml: File buildFile = new File("build.xml"); Project p = new Project(); p.setUserProperty("ant.file", buildFile.getAbsolutePath()); p.init(); ProjectHe