Do you have any idea what the classes are for? Based on the name and the target name (-post-compile), I am guessing this is adding some form of instrumentation to your class files...

I am not familiar with these classes, so its just a guess ;)

On Thu, 18 Feb 2010, Emma X. wrote:


Hi all,

I am trying to find out what that Ant Task is for. (I pasted it at the end
of my post).

I would like to by-pass using ant and proceed working with Eclipse, but to
accomplish this i need to understand what this task does.

Thanks in advance,
Emma

<target name="instrument-classes">
    <taskdef name="instrument-stack"
        classname="cz.advel.stack.instrument.InstrumentationTask"
        classpath="${run.classpath}">
    </taskdef>

    <instrument-stack dest="${build.classes.dir}"
packageName="your.package.name">
        <fileset dir="${build.classes.dir}" includes="**/*.class"/>
    </instrument-stack>
</target>

<target name="-post-compile" depends="instrument-classes">
</target>






--
Scot P. Floess
27 Lake Royale
Louisburg, NC  27549

252-478-8087 (Home)
919-890-8117 (Work)

Chief Architect JPlate   http://sourceforge.net/projects/jplate
Chief Architect JavaPIM  http://sourceforge.net/projects/javapim

Architect Keros          http://sourceforge.net/projects/keros

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscr...@ant.apache.org
For additional commands, e-mail: user-h...@ant.apache.org

Reply via email to