On Fri, 22 Mar 2002, Helg H. Bredow <[EMAIL PROTECTED]>
wrote:

> Sorry, I don't really understand what you mean.

So I have retry 8-)

> Are you saying that this is not a bug and that directories with
> spaces are not supported?

I'm saying it is not a bug and directories with spaces as well as
directories with commas are supported by nested excludes elements.

>               <jar jarfile="${jarfile}">
>                   <fileset dir="${build}" excludes="dependency cache/**"/>
>               </jar>

doesn't work, but

        <jar jarfile="${jarfile}">
          <fileset dir="${build}">
            <exclude name="dependency cache/**"/>
          </fileset>
        </jar>

does.

The nested elements don't support multiple entries and thus don't
tokenize anything.

Stefan

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

Reply via email to