Hi,
  I need a urgent help to generate jacoco remote by accessing a server running 
remotely. Somehow, I can not access that server without authentication. I am 
trying jacoco on the fly instrumentation (output=tcpserver) and trying to dump 
instrumented  data by running an ant task from local machine. Please see my 
build.xml. Somehow I am not able to connect remote server.
I would highly appreciate any help regarding that.

Build.xml:

<project name="JaCoCo" xmlns:jacoco="antlib:org.jacoco.ant">
<property name="result.exec.file" value="jacoco.exec"/>
    <property name="server" value="remote server if" />
    <property name="port" value ="6300" />
    <taskdef uri="antlib:org.jacoco.ant" resource="org/jacoco/ant/antlib.xml">
      <classpath path="jacocoant.jar"/>
    </taskdef>   

    <target name="getData">
      <jacoco:dump address="${server}" port="${port}" reset="true" 
append="false" destfile="${result.exec.file}"/>
    </target>

</project>

-- 
You received this message because you are subscribed to the Google Groups 
"JaCoCo and EclEmma Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jacoco/a99cb2da-1823-4c76-a2e9-30e330356c8f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to