InterviewSolution
| 1. |
Why Is Cobertura Causing Me To Have Classpath Conflicts With Asm? |
|
Answer» COBERTURA uses ASM to modify your bytecode. There are a few other popular programs that use ASM; Groovy and Hibernate, to name two. You COULD have problems if Cobertura uses a different version of asm and you add both versions to your classpath. Cobertura uses ASM to modify your bytecode. There are a few other popular programs that use ASM; Groovy and Hibernate, to name two. You could have problems if Cobertura uses a different version of asm and you add both versions to your classpath. |
|