From: <ad...@jb...> - 2005-04-27 23:15:50
|
To make this easy to parse you could add an "elements" attribute identify what you want to replace. | <source when="@{test}" elements="junit-elements"> | <mkdir dir="@{testDir}"/> | <junit fork="true" | printSummary="true"> | <formatter type="plain"/> | <classpath> | <pathElements/> | </classpath> | <batchtest todir="@{testDir}"> | <fileset dir="@{sourceDir}" includes="@{test}"/> | </batchtest> | <junit-elements/> <!-- HERE source/junit-elements --> | </junit> | </source> | View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3875683#3875683 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3875683 |