"scott.stark(a)jboss.org" wrote :
| All of these unused dependencies are in fact used, so what is this telling me?
|
Probably that is using a transitive dependency from one of the other
dependencies instead of the what you declared.
The MC build has lots of this kind of thing which solves the problem,
but it isn't the real solution for me:
|
| <!-- I want JBossXB -->
|
| <dependency>
| <groupId>org.jboss</groupId>
| <artifactId>jbossxb</artifactId>
|
| <!-- But don't let it override what I say the versions should be! :-( -->
|
| <exclusions>
| <exclusion>
| <groupId>jboss</groupId>
| <artifactId>jboss-common-core</artifactId>
| </exclusion>
| <exclusion>
| <groupId>jboss</groupId>
| <artifactId>jboss-common-logging-spi</artifactId>
| </exclusion>
| </exclusions>
| </dependency>
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4132202#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...