1. My Java service is running on server machine(say 'A')
2. Manual Test are run from any local machine
3. Before running the tests java service on server(machine A) is restarted with Jacobo agent.
4. Once tests are complete coverage report are dumped and pulled to local.
5. At local I have a copy of code and coverage report is processed against it.
During this process some classes are shown not covered because class ids for those classes are not same on server and local machine.
How can I use offline instrumentation to solve this issue ?
Please help regarding this