I would like to use Struts2 convention plugin(2.3.8) together with hibernate(netbeans framework plugin 3.2.5), but there is conflict before two different asm.jar versions.
Hibernate works fine with struts2 fw, but when i add convention plugin, I get error:
java.lang.NoSuchMethodError: org.objectweb.asm.ClassWriter.<init>(Z)V
- Hibernate 3.2.5 needs asm.jar
- Struts2 convention plugin needs asm-3.3.jar
IMHO convention plugin needs class: ClassWriter, which is located in asm-3.3.jar, but looks into asm.jar.
- tested with maven(there is no conflict, but not running)
- tested without maven(not running)
Is there any solution to achiev this, when hibernate 3.2.5 cant be changed to higher version?