Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-users] problem with iajc

That message is because you asked for the ant task to run in incremental mode with 'incremental=true'.  Using that you can change your source files, hit 'r' and it will do an incremental build.  I wouldn't use that in a regular batch build process.

Andy.

2008/11/13 Luca Ferrari <fluca1978@xxxxxxxxxxx>
In my ant file I've a task like the following:

<target name="_AspectJCompile" depends="init"  >
               <iajc  destDir="${build.dir}"  source="1.5"  classpathref="build.classpath"
incremental="true"  sourceRoots="${src.dir}" >
               </iajc>
</target>

but when I run the ant task within eclipse 3.4 (ajdt 1.6.1) I got the compiler
waiting for a user input without any message saying why:

init:
_AspectJCompile:
    [iajc]  press enter to recompile, r to rebuild, q to quit:


How can I discover what's going wrong? Any suggestion?

Thanks,
Luca
_______________________________________________
aspectj-users mailing list
aspectj-users@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/aspectj-users


Back to the top