Missing artifact hibernate:hibernate3:jar:3.2.3.GA

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>

 

One thought on “Missing artifact hibernate:hibernate3:jar:3.2.3.GA”

Leave a Reply

Your email address will not be published. Required fields are marked *