Hibernate ORM does depend on jboss-logging version 3.1.0.GA. It also depends on hibernate-commons-annotations version 4.0.1.Final which in turn depends on a different version of jboss-logging. However, hibernate-commons-annotations is separate Hibernate project - https://hibernate.onjira.com/browse/HCANN

Given that ORM explicitly depends on jboss-logging version 3.1.0.GA that is the version which should be used. This is also what mvn dependency:tree reports (using your pom):

INFO] ------------------------------------------------------------------------
[INFO] Building hibernate-dep-convergence 1.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO] 
[INFO] --- maven-dependency-plugin:2.1:tree (default-cli) @ hibernate-dep-convergence ---
[INFO] com.sopovs.moradanen:hibernate-dep-convergence:pom:1.0-SNAPSHOT
[INFO] \- org.hibernate:hibernate-core:jar:4.1.5.SP1:compile
[INFO]    +- antlr:antlr:jar:2.7.7:compile
[INFO]    +- org.jboss.logging:jboss-logging:jar:3.1.0.GA:compile
[INFO]    +- org.jboss.spec.javax.transaction:jboss-transaction-api_1.1_spec:jar:1.0.0.Final:compile
[INFO]    +- dom4j:dom4j:jar:1.6.1:compile
[INFO]    +- org.hibernate.javax.persistence:hibernate-jpa-2.0-api:jar:1.0.1.Final:compile
[INFO]    +- org.javassist:javassist:jar:3.15.0-GA:compile
[INFO]    \- org.hibernate.common:hibernate-commons-annotations:jar:4.0.1.Final:compile
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------

Which btw is consistent what gradlew dependencies in the hibernate-core module reports.

Do you have an actual problem?

This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira