I'm looking at the jbossxb pom (in trunk). It declares a dependency on:
| <dependency>
| <groupId>apache-xerces</groupId>
| <artifactId>xercesImpl</artifactId>
| <version>2.9.1</version>
| <scope>compile</scope>
| </dependency>
|
Shouldn't it declare a dependency on the version of xml-apis that goes with the xerces
impl?
i.e.
| <dependency>
| <groupId>apache-xerces</groupId>
| <artifactId>xml-apis</artifactId>
| <version>2.9.1</version>
| <scope>compile</scope>
| </dependency>
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4141255#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...