In my Maven pom.xml I have the following dependencies:
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>3.3.2.GA</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<version>3.0.0.ga</version>
</dependency>
If I look at the Maven dependencies I find that hibernate-entitymanager depends on hibernate-3.2.6.ga.
Is this correct? Why would it not depend on a 3.3.x version of Hibernate? Does this mean I am using a hybrid 3.2/3.3 version of Hibernate?
Also, I am pulling my dependencies from repo1.maven.org
-- should I instead be using repository.jboss.org
? For example, repository.jboss.org
has a newer version of hibernate-validator
.