it might be easier (depending on your needs) to just create the ant
objects directly, like
Project p = new Project();
MyTask t = new MyTask();
t.setProject(p);
t.setProperty("foo");
t.execute();
On 12/31/20 12:32 AM, Ioan Eugen Stan wrote:
Hello,
I would like to know if there
Hello,
I would like to know if there is a ProjectHelper with Ant that allows me to
load a project from a String/InputStream instead of a file.
I would like to embed ant in another tool and avoid to write files.
The InputStream/String is a much more generic abstraction than the file IMO.
I read