我在maven项目中使用了hibernate 4.3.0。当我尝试运行mvn dependacy:tree时,它显示了dom4j中xml-apis.jar的compliation问题。
[INFO] | + - dom4j:dom4j:jar:1.6.1:编译
[INFO] | | - xml-apis:xml-apis:jar:1.0.b2:compile
如果我从下面的hibarate-core中排除xml-apis jar,这个问题就解决了。
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>4.3.0.Final</version>
<exclusions>
<exclusion>
<artifactId>xml-apis</artifactId>
<groupId>xml-apis</groupId>
</exclusion>
</exclusions>
</dependency>
有没有办法解决这个问题而不从hibernate-core中排除jar?