We have an issue where hibernate-validator-3.0.0.ga.jar gets put into a warfile and due to a known incompatibility with a different hibernate-core version causes exceptions.

The problem is, that running

mvn dependency:list -Dverbose=true

or

mvn dependency:tree -Dverbose=true

Does not show any sign of hibernate-validator being a dependency of anything in the build.

Are there any good explanations / fixes for this kind of behaviour?

Maven Version is 2.2.1

link|improve this question

What version of maven? – bmargulies Oct 26 '11 at 11:29
Any trace in the output of mvn -X clean install? – palacsint Oct 26 '11 at 11:31
feedback

1 Answer

up vote 1 down vote accepted

The problem was a 2nd level dependency that was assigned to a nonexisting maven-scope. Somehow the evil hibernate-validators dependency was not shown in the dependency tree but ended up in the resulting JAR nontheless. Since we did not really need it we removed it from the POM and everything works as expected.

link|improve this answer
Could you post the pom.xml snippet, please? – palacsint Nov 1 '11 at 18:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.