[jboss-user] [Microcontainer] - Re: lifecycle-configure not found as a child of {urn:jboss:b

alesj do-not-reply at jboss.com
Fri Oct 12 06:03:23 EDT 2007


How many of xercesImpl jars is there in classpath?
Since I remember having some weird (perhaps even the same) problems when doing similar mc+aop in our mc+drools example due to multiple diff xercesImpl versions.

Had to exclude them:

  |       <dependency>
  |         <groupId>org.drools</groupId>
  |         <artifactId>drools-compiler</artifactId>
  |         <version>${version.jboss.drools}</version>
  |         <exclusions>
  |           <exclusion>
  |             <groupId>xml-apis</groupId>
  |             <artifactId>xml-apis</artifactId>
  |           </exclusion>
  |           <exclusion>
  |             <groupId>xerces</groupId>
  |             <artifactId>xercesImpl</artifactId>
  |           </exclusion>
  |         </exclusions>
  |       </dependency>
  | 

View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4094453#4094453

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4094453



More information about the jboss-user mailing list