Hi!
How can I create build xml from more file?
Like 'require' or 'include' in php.
E.g. common.xml:
<tstamp>
<format property="stamp" pattern="yyyy-MM-dd---hh-mm-ss"/>
</tstamp>
<property name="logFname" value="${stamp}.txt"/>
And I like to include this in more other build.xml, e.g.:
<?xml version="1.0" encoding="UTF-8"?>
<project>
<include_here file="common.xml"/>
...
</project>
The result should be:
<?xml version="1.0" encoding="UTF-8"?>
<project>
<tstamp>
<format property="stamp" pattern="yyyy-MM-dd---hh-mm-ss"/>
</tstamp>
<property name="logFname" value="${stamp}.txt"/>
...
</project>
Thanks, Adam
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]