hello,

Can anybody show me an example? 

I got messages as :
------
BUILD FAILED
/.../build.xml:25: Class org.apache.tools.ant.types.PatternSet$NameEntry
doesn't support the nested "mapper" element.
------
when i run a build.xml containing :
-------------------------------------------------------
<patternset id="src.files">
   <include name="foo"/>
   <include name="bar"/>
   <include name="bla"/>
</patternset>
<!-- ..... -->
<javac destdir="${build.classes.dir}">
   <src path="${src.dir}"/>
   <include>
      <mapper type="glob" from="*" to="*.java"/>
      <patternset refid="src.files"/>
   </include>
</javac>
--------------------------------------------------------
thanks in advance!

Cloudor



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

Reply via email to