> > I want use BlockBuilderStatus.class without instrumentation
Your initial question had no usage of http://www.jacoco.org/jacoco/trunk/doc/instrument-mojo.html , so I told you about exclusions for "prepare-agent" and "report". And "instrument" accepts file name for exclusions. > An Ant BuildException has occured: Error while creating report: Error > while analyzing xxx.class. Class xxx is already instrumented. " This happens when you try to mix online instrumentation using Agent with offline pre-instrumentation. Don't use both for the same classes. Please change your code to ignore synthetic members. > > where can I find a sample? https://docs.oracle.com/javase/7/docs/api/java/lang/reflect/Field.html#isSynthetic() -- 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/7fb03f35-47f4-49b6-bfeb-c7101fa43965%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
