Hi,
I've run into a problem with asm dependencies when added apache cxf in spring.
I've added apache cxf in maven:
After adding apache cxf I'm getting (on pastebin as it's to long to forum):Code:<dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-frontend-jaxws</artifactId> <version>${cxf.version}</version> </dependency> <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-transports-http</artifactId> <version>${cxf.version}</version> </dependency>
http://pastebin.com/hbFXdnUy
I've read that it can be because of hibernate - but I removed hibernate dependency in pom.xml (as I used it long time ago) and I'm still getting this problem.
I can only suspect that spring-asm is conflicting with apache-cxf asm. Does anyone know a solution to this??


Reply With Quote