this is found in the pom file of cxf-rt-frontend-jaxws-2.2.3.pom.
<dependency>
<groupId>asm</groupId>
<artifactId>asm</artifactId>
</dependency>There's no version of asm is specified, and when I took a look at the list of lib that is pulled, looks like cxf uses asm version 2.2.3, while most of other Java project uses asm version 3.1 onward (such as Jersey). How do I resolve this conflict, since I also use Jersey in my code base ? Regards, Tri
