Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-dev] another ANT/AspectJ related question...

Hello,
 
I have a simple test target that looks like this:
 
  <target name="aj-compile">
   <path id="aj.path">
          <dirset dir="${src.dir}">
             <exclude name="com/**/Test"/>
          </dirset>
   </path>
    <iajc destdir="${build.dir}" 
            incremental="true" nowarn="true" verbose="true" deprecation="false" >
     <classpath refid="my.classpath"/>
     <sourceRoots refid="aj.path"/>
    </iajc>
  </target>
Why iajc still tries to compile files from Test subdirectory? Is it me missing something or
iajc just using ${src.dir} from the <dirset> and doesn't care about all nested tags e.g. exclude.
 
 
Thank you,
Peter

Back to the top