With a build.xml file such as the following

<project name="test" default="clean" basedir=".">

    <target name="clean" description="clean package">
        <delete>
            <fileset dir=".">
                <patternset id="all_class_files">
                    <include name="**/*.class" />
                </patternset>
            </fileset>
        </delete>
    </target>

</project>

when it is run you receive the message "Overriding previous definition of reference to 
all_class_files" which is not the case. I have used this same style patternset within 
copy rather than delete blocks and not gotten this message. Am I doing something wrong 
or is this a bug?

Charles Meyer

-----------------------------------------------------------------------------------------------------------------
Commission Junction - The Largest Pay-For-Performance Ad Network.
[EMAIL PROTECTED]     
www.cj.com
Ph: 805 560-0777
Fax: 805 560-0776


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

Reply via email to