Hi,

I'm using Ant 1.6.  I have this task ...

    <target name="check" description="compile source">
        <taskdef resource="checkstyletask.properties" >
                <classpath refid="checkstyle.class.path"/>
        </taskdef>
        <checkstyle config="${checkstyleCetFile}">   
                <fileset dir="${srcDir}/com" includes="**/*.java"/> 
                <formatter type="plain"/>
                <formatter type="xml" toFile="${checkstyleErrorsXmlFile}"/>     
                 
        </checkstyle>
        <style in="${checkstyleErrorsXmlFile}" 
out="${checkstyleErrorsHtmlFile}" style="${docsDir}/checkstyle-simple.xsl"/>
    </target>

I want to modify my <fileset> clause such that it includes all .java files in 
that directory except for java files within com/myco/ssml and 
com/myco/provisioning .  How would I change the clause to exclude these two 
directories?

Thanks, - Dave

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to