Missing artifact hibernate:hibernate3:jar:3.2.3.GA
If you are using Maven and get error : Missing artifact hibernate:hibernate3:jar:3.2.3.GA means hibernate artifact is not true. Follow below steps to fix it:
- Go to Maven repository site: Maven
- Copy artifact dependency XML tag and pate it to your pom.xml file in eclipse
- This should fix the issue. Below is artifact dependency for reference to copy to your eclipse:
<dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate</artifactId> <version>3.2.3.ga</version> </dependency>
Helped in fixing the issue I was seeing in my project setup. Thanks !