Hi all,

There is a documentation error in ant manual for ant task replaceregexp. In example:

<replaceregexp byline="true">
  <regexp pattern="OldProperty=(.*)"/>
  <substitution expression="NewProperty=\1"/>
  <fileset dir=".">
   <includes="*.properties"/>
  </fileset>
 </replaceregexp>

includes should be an attribute, something like this, I think:

  <fileset dir="."
    includes="*.properties" />

Or maybe nasted tag, something like this

  <fileset dir=".">
   <includes includes="*.properties"/>
  </fileset>

But the example anyway, wrong.

Can someone change this?

Regards,
Ognjen

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to