I have a task called uni-d
<target name="UniDTask">
<taskdef name="uni-d"
classname="be.unid.generate.AntTask"
classpath="${unid.dir}/uni-d.jar"
classpathref="task.path"
/>
</target>
and here i use it:
<target name="task" depends="UniDTask">
<uni-d
appdir="D:\Work\Uni-D\test\src\uni-d"
definition="test1.xml"
outputdir="../../build/src"
spackage="be.unid.test.om"
template="xejb">
<config
name="extra">
<attribute name="datasource" value="java:/ICtraceDS"/>
<attribute jndi="IC-trace"/>
</config>
</uni-d>
This task add's the values for attributes:
appdir; definition; outputdir; spackage; template in the
config section of a ini file. The problem is that i have to create another
section in the ini file named extra and add the values for the parameters
datasource and jndi in the extra section of ini file. For this purpose i
must use the sintax in as you can se above:
<config
name="extra">
<attribute name="datasource" value="java:/ICtraceDS"/>
<attribute jndi="IC-trace"/>
</config>
How can i do that?
Andrei
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]