> I'm not that familiar with ant...
>
> Q1: How do I do an incremental build during development?

Yes, but you cannot erase all previously compiled java class before next 
compilation :-) I commented out fragments of clean target:

<target name="clean">
          <delete file="bin/ApacheJMeter.jar"/>
          <delete dir="lib/ext"/>
          <!--delete dir="${build.dir}"/-->
          <!--delete dir="${docs.api.dest.dir}"/-->
        </target>

and after that ant compiles only what has changed.

Ant is very good, but if you have an IDE which compiles java classes when 
editing, you can take big speed advantage from that. I've configured jmeter 
project for eclipse and after pressing "run" button I'm not waiting at all 
(everything is already compiled). If you want I can describe how I did it.

best regards
Michal Kostrzewa


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

Reply via email to