first of all: exec file is written at the JVM termination ( as stated in documentation at http://www.jacoco.org/jacoco/trunk/doc/agent.html , please read documentation! ) by means of JVM shutdown hook ( see http://docs.oracle.com/javase/7/docs/api/java/lang/Runtime.html#addShutdownHook(java.lang.Thread) ) So it won't be written, if server is not terminated, or if killed instead of graceful termination.
secondly: classes on the server must match exactly (byte-to-byte) classes used during report generation and that's why you're seeing warnings ( btw please consider doing a search prior to asking question - http://lmgtfy.com/?q=Execution+data+does+not+match and again - this is described in documentation, please read it - http://www.jacoco.org/jacoco/trunk/doc/classids.html ) So if classes are modified, then re-deploy of classes / restart of server is needed. -- 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/d9bbb882-acbe-47b0-b684-84b3677e0150%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
