Hi, i have the following target in my buildfile, wich did work with Ant 1.1.
With Ant 1.2 it prints out:
[jar] Note: creating empty jar archive
and does exactly that :-(
When i only specify one pattern in <include>
it works as expected.
Is specifying multiple patterns in one tag no
longer supported? (can't see it in the docs)
Regards,
Alex
<target name="jar" depends="compile">
<jar jarfile="lib/examples.jar" basedir="examples">
<include name="**/*.class, **/*.gif" />
</jar>
</target>
